Completed
Push — master ( cd3cad...16ef1b )
by Vladimir
02:21
created
src/Manager/TrackingManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
tests/Utilities/PHPUnit_Stakx_TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/Exception/FileAwareException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.