diff options
author | Sam Reed <reedy@users.mediawiki.org> | 2012-02-09 17:42:35 +0000 |
---|---|---|
committer | Sam Reed <reedy@users.mediawiki.org> | 2012-02-09 17:42:35 +0000 |
commit | 138ddc452fc1fc4efb8464d27e2a71f21c516b9c (patch) | |
tree | d79a90fe1d5a18ed709c37e8603062b77df1e1f7 /includes/cache/FileCacheBase.php | |
parent | f3cc77aaeeb4f3a93fde7de80dbaafd89f6bd2bf (diff) | |
download | mediawikicore-138ddc452fc1fc4efb8464d27e2a71f21c516b9c.tar.gz mediawikicore-138ddc452fc1fc4efb8464d27e2a71f21c516b9c.zip |
Fixing some of the "@return true" or "@return false", need to be "@return bool" and then the metadata can say true if foo, false if bar
Other documentation improvements
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/111049
Diffstat (limited to 'includes/cache/FileCacheBase.php')
-rw-r--r-- | includes/cache/FileCacheBase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/cache/FileCacheBase.php b/includes/cache/FileCacheBase.php index 37401655c66c..70bb22165641 100644 --- a/includes/cache/FileCacheBase.php +++ b/includes/cache/FileCacheBase.php @@ -74,7 +74,7 @@ abstract class FileCacheBase { /** * Get the last-modified timestamp of the cache file - * @return string|false TS_MW timestamp + * @return string|bool TS_MW timestamp */ public function cacheTimestamp() { $timestamp = filemtime( $this->cachePath() ); |