]> source.dussan.org Git - nextcloud-server.git/commitdiff
Camelcase fix
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Mon, 2 Jan 2017 16:05:58 +0000 (17:05 +0100)
committerRoeland Jago Douma <roeland@famdouma.nl>
Fri, 6 Jan 2017 08:42:39 +0000 (09:42 +0100)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
lib/private/Template/SCSSCacher.php

index bc493a44e7ed93fa503267c86d7af5be742202b8..e19640e067aa6d45c51dc98e5b59e265a4d7867e 100644 (file)
@@ -84,7 +84,7 @@ class SCSSCacher {
                        $folder = $this->appData->newFolder('core');
                }
 
-               if($this->is_cached($fileNameCSS, $fileNameSCSS, $folder, $path)) {
+               if($this->isCached($fileNameCSS, $fileNameSCSS, $folder, $path)) {
                        return true;
                } else {
                        return $this->cache($path, $fileNameCSS, $fileNameSCSS, $folder, $webDir);
@@ -99,7 +99,7 @@ class SCSSCacher {
         * @param string $path
         * @return boolean
         */
-       private function is_cached($fileNameCSS, $fileNameSCSS, ISimpleFolder $folder, $path) {
+       private function isCached($fileNameCSS, $fileNameSCSS, ISimpleFolder $folder, $path) {
                try{
                        $cachedFile = $folder->getFile($fileNameCSS);
                        if( $cachedFile->getMTime() > filemtime($path.'/'.$fileNameSCSS)