13 lines
131 B
PHP
13 lines
131 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* getCurrentSeason
|
||
|
*
|
||
|
* Returns the current season
|
||
|
*/
|
||
|
|
||
|
function getCurrentSeason(): string
|
||
|
{
|
||
|
var_dump(date());
|
||
|
}
|