Skip to content

Commit

Permalink
Missing variable name in phpdoc param tag
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Apr 17, 2017
1 parent 1c45ceb commit 6dcee10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _protected/framework/File/File.class.php
Expand Up @@ -425,7 +425,7 @@ public function remove($sDir)
/**
* Get the creation/modification time of a file in the Unix timestamp.
*
* @param string Full path of the file.
* @param string $sFile Full path of the file.
* @return integer|boolean Returns the time the file was last modified, or FALSE if it not found.
*/
public function getModifTime($sFile)
Expand All @@ -437,7 +437,7 @@ public function getModifTime($sFile)
* Get the version of a file based on the its latest modification.
* Shortened form of self::getModifTime()
*
* @param string Full path of the file.
* @param string $sFile Full path of the file.
* @return integer Returns the latest modification time of the file in Unix timestamp.
*/
public static function version($sFile)
Expand Down

0 comments on commit 6dcee10

Please sign in to comment.