Camelcase fix

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-01-02 17:05:58 +01:00 committed by Roeland Jago Douma
parent 7b8debc5d3
commit 6d3a890cb3
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 2 additions and 2 deletions

View 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)