| @@ -44,7 +44,7 @@ discard block | ||
| 44 | 44 |      { | 
| 45 | 45 | $value = $this->includeFileForId($id); | 
| 46 | 46 | |
| 47 | -        if (! $value) { | |
| 47 | +        if ( ! $value) { | |
| 48 | 48 | return false; | 
| 49 | 49 | } | 
| 50 | 50 | |
| @@ -62,7 +62,7 @@ discard block | ||
| 62 | 62 |      { | 
| 63 | 63 | $value = $this->includeFileForId($id); | 
| 64 | 64 | |
| 65 | -        if (! $value) { | |
| 65 | +        if ( ! $value) { | |
| 66 | 66 | return false; | 
| 67 | 67 | } | 
| 68 | 68 | |
| @@ -78,7 +78,7 @@ discard block | ||
| 78 | 78 | $lifeTime = time() + $lifeTime; | 
| 79 | 79 | } | 
| 80 | 80 | |
| 81 | - $filename = $this->getFilename($id); | |
| 81 | + $filename = $this->getFilename($id); | |
| 82 | 82 | |
| 83 | 83 | $value = array( | 
| 84 | 84 | 'lifetime' => $lifeTime, | 
| @@ -108,7 +108,7 @@ discard block | ||
| 108 | 108 | // note: error suppression is still faster than `file_exists`, `is_file` and `is_readable` | 
| 109 | 109 | $value = @include $fileName; | 
| 110 | 110 | |
| 111 | -        if (! isset($value['lifetime'])) { | |
| 111 | +        if ( ! isset($value['lifetime'])) { | |
| 112 | 112 | return false; | 
| 113 | 113 | } | 
| 114 | 114 | |