Passed
Pull Request — master (#7087)
by
unknown
10:28
created
tests/Doctrine/Tests/Mocks/HydratorMockStatement.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 Doctrine\Tests\Mocks;
6 6
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function fetchColumn($columnNumber = 0)
48 48
     {
49 49
         $row = current($this->resultSet);
50
-        if (! is_array($row)) {
50
+        if ( ! is_array($row)) {
51 51
             return false;
52 52
         }
53 53
         $val = array_shift($row);
Please login to merge, or discard this patch.