summaryrefslogtreecommitdiff
path: root/app/Date
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-08-29 08:50:15 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-08-29 13:01:42 +0100
commit0635340473e7c75e57f747e5cc9aaba65903874f (patch)
tree533cf698bd58956a4b03b941d3998140a09839af /app/Date
parent8173968f3daf6ebef4c6c1fb00880edf5d601e68 (diff)
downloadwebtrees-0635340473e7c75e57f747e5cc9aaba65903874f.tar.gz
webtrees-0635340473e7c75e57f747e5cc9aaba65903874f.tar.bz2
webtrees-0635340473e7c75e57f747e5cc9aaba65903874f.zip
Calendar methods do not need to be public/static
Diffstat (limited to 'app/Date')
-rw-r--r--app/Date/CalendarDate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Date/CalendarDate.php b/app/Date/CalendarDate.php
index c6d80068b1..dbd1406d23 100644
--- a/app/Date/CalendarDate.php
+++ b/app/Date/CalendarDate.php
@@ -213,7 +213,7 @@ class CalendarDate
*
* @return string
*/
- public static function monthNameNominativeCase(int $month_number, bool $leap_year): string
+ protected function monthNameNominativeCase(int $month_number, bool $leap_year): string
{
static $translated_month_names;