Completed
Push — master ( ac3ecd...cd9341 )
by Daniel
03:23
created
src/Browser.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@
 block discarded – undo
96 96
         return $columns;
97 97
     }
98 98
 
99
+    /**
100
+     * @param string $path
101
+     */
99 102
     private function getColumnPaths($path)
100 103
     {
101 104
         $columnNames = ['/'];
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.
src/Filter/AcceptorRegistry.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser\Filter;
6 6
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
     public function __construct(array $filters)
12 12
     {
13
-        array_map(function (AcceptorInterface $filter) {
13
+        array_map(function(AcceptorInterface $filter) {
14 14
         }, $filters);
15 15
 
16 16
         $this->filters = $filters;
Please login to merge, or discard this patch.
src/Filter/Filter/AcceptorFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.
src/Filter/Filter/PassThroughFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.
src/Filter/AcceptorIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.
src/Filter/Acceptor/NameAcceptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.
src/Filter/AcceptorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.
src/Column.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ResourceBrowser;
6 6
 
Please login to merge, or discard this patch.