@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | protected $tracking; |
82 | 82 | |
83 | - public function __construct() |
|
83 | + public function __construct () |
|
84 | 84 | { |
85 | 85 | parent::__construct(); |
86 | 86 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @param string $filePath |
139 | 139 | * @param string|null $namespace |
140 | 140 | */ |
141 | - public function delArrayFromTracker($key, $filePath, $namespace = null) |
|
141 | + public function delArrayFromTracker ($key, $filePath, $namespace = null) |
|
142 | 142 | { |
143 | 143 | if (is_null($namespace)) |
144 | 144 | { |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @param array $includes |
268 | 268 | * @param array $excludes |
269 | 269 | */ |
270 | - public function scanTrackableItems($path, $options = array(), $includes = array(), $excludes = array()) |
|
270 | + public function scanTrackableItems ($path, $options = array(), $includes = array(), $excludes = array()) |
|
271 | 271 | { |
272 | 272 | $fileExplorerFlags = array_key_exists('fileExplorer', $options) ? $options['fileExplorer'] : null; |
273 | 273 | $this->fileExplorer = FileExplorer::create($path, $excludes, $includes, $fileExplorerFlags); |
@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | protected $fs; |
33 | 33 | |
34 | - public function setUp() |
|
34 | + public function setUp () |
|
35 | 35 | { |
36 | 36 | $this->dummyFile = vfsStream::newFile('stakx.html.twig'); |
37 | 37 | $this->rootDir = vfsStream::setup(); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | private $lineNumber; |
18 | 18 | private $filePath; |
19 | 19 | |
20 | - public function __construct($message = "", $code = 0, \Exception $previous = null, $path = "", $line = -1) |
|
20 | + public function __construct ($message = "", $code = 0, \Exception $previous = null, $path = "", $line = -1) |
|
21 | 21 | { |
22 | 22 | parent::__construct($message, $code, $previous); |
23 | 23 |