Completed
Push — master ( e2e8d0...e0bf3e )
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.