@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | public function removeFilePath($filePath) |
51 | 51 | { |
52 | 52 | if (false !== ($key = array_search($filePath, $this->filePaths))) { |
53 | - unset($this->filePaths[ $key ]); |
|
53 | + unset($this->filePaths[$key]); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return $this; |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | { |
111 | 111 | if (is_dir($filePath) AND ! in_array($filePath, $this->filePaths)) { |
112 | 112 | if (isset($offset)) { |
113 | - $this->filePaths[ $offset ] = $filePath; |
|
113 | + $this->filePaths[$offset] = $filePath; |
|
114 | 114 | } else { |
115 | 115 | $this->filePaths[] = $filePath; |
116 | 116 | } |