Completed
Push — 18.x ( c45293...abfd48 )
by Tim
04:52
created
RoboFile.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,6 @@
 block discarded – undo
18 18
  * @link      http://www.techdivision.com
19 19
  */
20 20
 
21
-use Lurker\Event\FilesystemEvent;
22
-use Symfony\Component\Finder\Finder;
23
-
24 21
 /**
25 22
  * Defines the available build tasks.
26 23
  *
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
     {
58 58
         // optimize autoloader with custom path
59 59
         return $this->taskComposerInstall()
60
-             ->preferDist()
61
-             ->optimizeAutoloader()
62
-             ->run();
60
+                ->preferDist()
61
+                ->optimizeAutoloader()
62
+                ->run();
63 63
     }
64 64
 
65 65
     /**
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
     {
72 72
         // optimize autoloader with custom path
73 73
         return $this->taskComposerUpdate()
74
-             ->preferDist()
75
-             ->optimizeAutoloader()
76
-             ->run();
74
+                ->preferDist()
75
+                ->optimizeAutoloader()
76
+                ->run();
77 77
     }
78 78
 
79 79
     /**
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
     public function prepare()
95 95
     {
96 96
         return $this->taskFileSystemStack()
97
-             ->mkdir($this->properties['dist.dir'])
98
-             ->mkdir($this->properties['target.dir'])
99
-             ->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
100
-             ->run();
97
+                ->mkdir($this->properties['dist.dir'])
98
+                ->mkdir($this->properties['target.dir'])
99
+                ->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
100
+                ->run();
101 101
     }
102 102
 
103 103
     /**
@@ -167,8 +167,8 @@  discard block
 block discarded – undo
167 167
 
168 168
         // run PHPUnit
169 169
         return $this->taskPHPUnit(sprintf('%s/bin/phpunit', $this->properties['vendor.dir']))
170
-             ->configFile('phpunit.xml')
171
-             ->run();
170
+                ->configFile('phpunit.xml')
171
+                ->run();
172 172
     }
173 173
 
174 174
     /**
Please login to merge, or discard this patch.