mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge pull request #2635 from bcrowe/hotfix-timeDocBlock
Simple docblock updates to CakeTime
This commit is contained in:
commit
db1e7c13fb
1 changed files with 3 additions and 3 deletions
|
@ -83,14 +83,14 @@ class CakeTime {
|
||||||
public static $wordEnd = '+1 month';
|
public static $wordEnd = '+1 month';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Temporary variable containing timestamp value, used internally convertSpecifiers()
|
* Temporary variable containing the timestamp value, used internally in convertSpecifiers()
|
||||||
*
|
*
|
||||||
* @var integer
|
* @var integer
|
||||||
*/
|
*/
|
||||||
protected static $_time = null;
|
protected static $_time = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Magic set method for backward compatibility.
|
* Magic set method for backwards compatibility.
|
||||||
* Used by TimeHelper to modify static variables in CakeTime
|
* Used by TimeHelper to modify static variables in CakeTime
|
||||||
*
|
*
|
||||||
* @param string $name Variable name
|
* @param string $name Variable name
|
||||||
|
@ -106,7 +106,7 @@ class CakeTime {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Magic set method for backward compatibility.
|
* Magic set method for backwards compatibility.
|
||||||
* Used by TimeHelper to get static variables in CakeTime
|
* Used by TimeHelper to get static variables in CakeTime
|
||||||
*
|
*
|
||||||
* @param string $name Variable name
|
* @param string $name Variable name
|
||||||
|
|
Loading…
Reference in a new issue