diff options
author | cash <cash.costello@gmail.com> | 2013-03-16 12:03:21 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2013-03-16 12:03:21 -0400 |
commit | ea4ce20b3632a3c55ffedfad1ad53845db5a7e12 (patch) | |
tree | 765dfeb2bd559efb31785f522e95f1a1af158ade /engine/classes/ElggFileCache.php | |
parent | a2ecf54d56d9f877e6f0f8ac6d841cee6187aac4 (diff) | |
download | elgg-ea4ce20b3632a3c55ffedfad1ad53845db5a7e12.tar.gz elgg-ea4ce20b3632a3c55ffedfad1ad53845db5a7e12.tar.bz2 |
coding standards
Diffstat (limited to 'engine/classes/ElggFileCache.php')
-rw-r--r-- | engine/classes/ElggFileCache.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/classes/ElggFileCache.php b/engine/classes/ElggFileCache.php index e654f1db2..94143f777 100644 --- a/engine/classes/ElggFileCache.php +++ b/engine/classes/ElggFileCache.php @@ -26,6 +26,7 @@ class ElggFileCache extends ElggCache { } } + // @codingStandardsIgnoreStart /** * Create and return a handle to a file. * @@ -41,6 +42,7 @@ class ElggFileCache extends ElggCache { return $this->createFile($filename, $rw); } + // @codingStandardsIgnoreEnd /** * Create and return a handle to a file. @@ -72,6 +74,7 @@ class ElggFileCache extends ElggCache { return fopen($path . $filename, $rw); } + // @codingStandardsIgnoreStart /** * Create a sanitised filename for the file. * @@ -86,6 +89,7 @@ class ElggFileCache extends ElggCache { return $filename; } + // @codingStandardsIgnoreEnd /** * Create a sanitised filename for the file. |