Completed
Push — master ( ffb6b0...552cf0 )
by Саша
06:45 queued 04:54
created
spec/Extraload/Transformer/NoopTransformerSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace spec\Extraload\Transformer;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 
8 7
 class NoopTransformerSpec extends ObjectBehavior
9 8
 {
Please login to merge, or discard this patch.
features/bootstrap/DefaultPipelineContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     {
52 52
         return $this->pipeline = new DefaultPipeline(
53 53
             $this->createCsvExtractor(),
54
-            new CallbackTransformer(function ($data) {
54
+            new CallbackTransformer(function($data) {
55 55
                 return [
56 56
                     'isbn' => $data[0],
57 57
                     'title' => $data[1],
Please login to merge, or discard this patch.
features/bootstrap/HookContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
      */
10 10
     public function initialize()
11 11
     {
12
-        self::$workingDirectory = sys_get_temp_dir().DIRECTORY_SEPARATOR.'etl'.DIRECTORY_SEPARATOR;
12
+        self::$workingDirectory = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'etl' . DIRECTORY_SEPARATOR;
13 13
     }
14 14
 
15 15
     /**
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         array_shift($files);
28 28
 
29 29
         foreach ($files as $file) {
30
-            $file = $path.DIRECTORY_SEPARATOR.$file;
30
+            $file = $path . DIRECTORY_SEPARATOR . $file;
31 31
             if (is_dir($file)) {
32 32
                 $this->clearDirectory($file);
33 33
             } else {
Please login to merge, or discard this patch.
features/bootstrap/BaseContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     protected function createFile($name, $content)
11 11
     {
12
-        $path = self::$workingDirectory.$name;
12
+        $path = self::$workingDirectory . $name;
13 13
 
14 14
         $this->createDirectory(dirname($path));
15 15
 
Please login to merge, or discard this patch.
spec/Extraload/Extractor/CsvExtractorSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     function let()
10 10
     {
11
-        $this->beConstructedWith(new \SplFileObject(__DIR__.'/../../Fixture/extract.csv'));
11
+        $this->beConstructedWith(new \SplFileObject(__DIR__ . '/../../Fixture/extract.csv'));
12 12
     }
13 13
 
14 14
     function it_is_initializable()
Please login to merge, or discard this patch.
spec/Extraload/Loader/Doctrine/DbalLoaderSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace spec\Extraload\Transformer;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 
8 7
 class NoopTransformerSpec extends ObjectBehavior
9 8
 {
Please login to merge, or discard this patch.
spec/Extraload/Transformer/CallbackTransformerSpec.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace spec\Extraload\Transformer;
4 4
 
5 5
 use PhpSpec\ObjectBehavior;
6
-use Prophecy\Argument;
7 6
 
8 7
 class NoopTransformerSpec extends ObjectBehavior
9 8
 {
Please login to merge, or discard this patch.