Completed
Push — master ( e42624...c35825 )
by Harry
9s
created
tests/unit/Modify/MakeDirectoryTest.php 1 patch
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.
src/Helper/LineStreamIterator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * Return the current element
72 72
      *
73 73
      * @link  http://php.net/manual/en/iterator.current.php
74
-     * @return mixed Can return any type.
74
+     * @return string Can return any type.
75 75
      * @since 5.0.0
76 76
      */
77 77
     public function current()
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * Return the key of the current element
127 127
      *
128 128
      * @link  http://php.net/manual/en/iterator.key.php
129
-     * @return mixed scalar on success, or null on failure.
129
+     * @return integer scalar on success, or null on failure.
130 130
      * @since 5.0.0
131 131
      */
132 132
     public function key()
Please login to merge, or discard this patch.
src/Node/LocalFile.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -15,9 +15,7 @@
 block discarded – undo
15 15
 
16 16
 use Graze\DataFile\Modify\Compress\CompressionFactory;
17 17
 use GuzzleHttp\Psr7\LazyOpenStream;
18
-use GuzzleHttp\Psr7\Stream;
19 18
 use League\Flysystem\Adapter\Local;
20
-use League\Flysystem\Filesystem;
21 19
 use Psr\Http\Message\StreamInterface;
22 20
 
23 21
 class LocalFile extends FileNode implements LocalFileNodeInterface, NodeStreamInterface
Please login to merge, or discard this patch.