Completed
Push — master ( 1a19ee...d67a52 )
by Harry
8s
created
src/Node/LocalFile.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Graze\DataFile\Modify\Compress\CompressionType;
6 6
 use League\Flysystem\Adapter\Local;
7
-use League\Flysystem\Filesystem;
8 7
 
9 8
 class LocalFile extends FileNode implements LocalFileNodeInterface
10 9
 {
Please login to merge, or discard this patch.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Test\Unit\Node;
15 15
 
Please login to merge, or discard this patch.
tests/unit/Finder/MetadataFinderTest.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $file = m::mock(FileNode::class);
26 26
         $file->shouldReceive('getMetadata')
27
-             ->andReturn([
28
-                 'name' => 'test',
29
-             ]);
27
+                ->andReturn([
28
+                    'name' => 'test',
29
+                ]);
30 30
         $collection = new FileNodeCollection();
31 31
         $collection->add($file);
32 32
 
@@ -41,14 +41,14 @@  discard block
 block discarded – undo
41 41
     {
42 42
         $file = m::mock(FileNode::class);
43 43
         $file->shouldReceive('getMetadata')
44
-             ->andReturn([
45
-                 'name' => 'test',
46
-             ]);
44
+                ->andReturn([
45
+                    'name' => 'test',
46
+                ]);
47 47
         $file2 = m::mock(FileNode::class);
48 48
         $file2->shouldReceive('getMetadata')
49
-              ->andReturn([
50
-                  'name' => 'test2',
51
-              ]);
49
+                ->andReturn([
50
+                    'name' => 'test2',
51
+                ]);
52 52
         $collection = new FileNodeCollection();
53 53
         $collection->add($file);
54 54
         $collection->add($file2);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $file = m::mock(FileNode::class);
69 69
         $file->shouldReceive('getMetadata')
70
-             ->andReturn(false);
70
+                ->andReturn(false);
71 71
         $collection = new FileNodeCollection();
72 72
         $collection->add($file);
73 73
 
Please login to merge, or discard this patch.
tests/unit/Helper/OptionalLoggerTraitTest.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use Graze\DataFile\Test\Helper\FakeOptionalLogger;
6 6
 use Graze\DataFile\Test\TestCase;
7 7
 use Mockery as m;
8
-use Psr\Log\LoggerInterface;
9 8
 use Psr\Log\LogLevel;
9
+use Psr\Log\LoggerInterface;
10 10
 
11 11
 class OptionalLoggerTraitTest extends TestCase
12 12
 {
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Test\Unit\Helper;
15 15
 
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
         $this->logger->setLogger($logger);
43 43
 
44 44
         $logger->shouldReceive('log')
45
-               ->with(LogLevel::INFO, 'Graze\DataFile\Test\Helper\FakeOptionalLogger: some text', [])
46
-               ->once();
45
+                ->with(LogLevel::INFO, 'Graze\DataFile\Test\Helper\FakeOptionalLogger: some text', [])
46
+                ->once();
47 47
 
48 48
         $this->logger->doLog('some text');
49 49
     }
Please login to merge, or discard this patch.
tests/unit/Modify/MakeDirectoryTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Graze\DataFile\Test\Unit\Modify;
4 4
 
5
-use Graze\DataFile\Modify\Exception\MakeDirectoryFailedException;
6 5
 use Graze\DataFile\Modify\MakeDirectory;
7 6
 use Graze\DataFile\Node\FileNode;
8 7
 use Graze\DataFile\Test\TestCase;
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Test\Unit\Modify;
15 15
 
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
         $directory = new FileNode($fileSystem, 'random/path');
29 29
 
30 30
         $fileSystem->shouldReceive('createDir')
31
-                   ->with($directory->getDirectory(), ['visibility' => 'public'])
32
-                   ->andReturn(false);
31
+                    ->with($directory->getDirectory(), ['visibility' => 'public'])
32
+                    ->andReturn(false);
33 33
         $this->expectException(MakedirectoryFailedException::class);
34 34
 
35 35
         $maker = new MakeDirectory();
Please login to merge, or discard this patch.
src/Modify/Compress/CompressorTrait.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Modify\Compress;
15 15
 
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
         }
37 37
 
38 38
         $outputFile = $node->getClone()
39
-                           ->setPath($pathInfo['dirname'] . '/' . $pathInfo['filename'] . '.' . $this->getExtension())
40
-                           ->setCompression($this->getName());
39
+                            ->setPath($pathInfo['dirname'] . '/' . $pathInfo['filename'] . '.' . $this->getExtension())
40
+                            ->setCompression($this->getName());
41 41
 
42 42
         $this->log(LogLevel::INFO, "Compressing file: {file} into {target} using {compression}", [
43 43
             'file'        => $node,
Please login to merge, or discard this patch.
src/Modify/Compress/DeCompressorTrait.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Modify\Compress;
15 15
 
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
         }
37 37
 
38 38
         $outputFile = $node->getClone()
39
-                           ->setPath($pathInfo['dirname'] . '/' . $pathInfo['filename'])
40
-                           ->setCompression(CompressionFactory::TYPE_NONE);
39
+                            ->setPath($pathInfo['dirname'] . '/' . $pathInfo['filename'])
40
+                            ->setCompression(CompressionFactory::TYPE_NONE);
41 41
 
42 42
         $this->log(LogLevel::INFO, "DeCompressing file: {file} into {target} using {compression}", [
43 43
             'file'        => $node,
Please login to merge, or discard this patch.
src/Modify/Encoding/ConvertEncoding.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Modify\Encoding;
15 15
 
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
         );
64 64
 
65 65
         $output = $file->getClone()
66
-                       ->setPath($pathInfo['dirname'] . '/' . $outputFileName)
67
-                       ->setEncoding($encoding);
66
+                        ->setPath($pathInfo['dirname'] . '/' . $outputFileName)
67
+                        ->setEncoding($encoding);
68 68
 
69 69
         $cmd = "iconv " .
70 70
             ($file->getEncoding() ? "--from-code={$file->getEncoding()} " : '') .
Please login to merge, or discard this patch.
src/Modify/Tail.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Modify;
15 15
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $outputFilePath = $pathInfo['dirname'] . '/' . $outputFileName;
99 99
 
100 100
         $output = $file->getClone()
101
-                       ->setPath($outputFilePath);
101
+                        ->setPath($outputFilePath);
102 102
 
103 103
         $this->log(LogLevel::INFO, "Retrieving the last {lines} from file {file}", [
104 104
             'lines' => $this->lines,
Please login to merge, or discard this patch.
tests/integration/Modify/Compress/FindCompressionTest.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-file
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-file
12
- */
3
+     * This file is part of graze/data-file
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-file
12
+     */
13 13
 
14 14
 namespace Graze\DataFile\Test\Integration\Modify\Compress;
15 15
 
@@ -49,13 +49,13 @@  discard block
 block discarded – undo
49 49
         $this->processFactory = m::mock(ProcessFactory::class)->makePartial();
50 50
         $this->compressionFactory = m::mock(CompressionFactory::class);
51 51
         $this->compressionFactory->shouldReceive('isCompression')
52
-                                 ->with('gzip')
53
-                                 ->andReturn(true);
52
+                                    ->with('gzip')
53
+                                    ->andReturn(true);
54 54
         $this->compressionFactory->shouldReceive('isCompression')
55
-                                 ->with('zip')
56
-                                 ->andReturn(true);
55
+                                    ->with('zip')
56
+                                    ->andReturn(true);
57 57
         $this->compressionFactory->shouldReceive('isCompression')
58
-                                 ->andReturn(false);
58
+                                    ->andReturn(false);
59 59
         $this->findCompression = new FindCompression($this->compressionFactory);
60 60
         $this->findCompression->setProcessFactory($this->processFactory);
61 61
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                 );
111 111
 
112 112
         $this->processFactory->shouldReceive('createProcess')
113
-                             ->andReturn($process);
113
+                                ->andReturn($process);
114 114
 
115 115
         $file = new LocalFile(static::$dir . 'unknown_compression.test');
116 116
         $file->put('random stuff and things 2!');
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         $process->shouldReceive('mustRun')->andThrow(new ProcessFailedException($process));
131 131
 
132 132
         $this->processFactory->shouldReceive('createProcess')
133
-                             ->andReturn($process);
133
+                                ->andReturn($process);
134 134
 
135 135
         $file = new LocalFile(static::$dir . 'failed_find_encoding_process.test');
136 136
         $file->put('random stuff and things 2!');
Please login to merge, or discard this patch.