@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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); |