Explorar el Código

Fixed parenthesis whitespace.

mlebrun hace 12 años
padre
commit
08972b31d3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Mustache/Loader/FilesystemLoader.php

+ 1 - 1
src/Mustache/Loader/FilesystemLoader.php

@@ -49,7 +49,7 @@ class Mustache_Loader_FilesystemLoader implements Mustache_Loader
     {
         $this->baseDir = $baseDir;
 
-        if ( strpos( $this->baseDir, '://' ) === -1 ) {
+        if (strpos( $this->baseDir, '://' ) === -1) {
             $this->baseDir = rtrim(realpath($this->baseDir), '/');
         }