Completed
Push — master ( 45d185...60d1a6 )
by Oscar
01:20
created
src/Scheme/Traits/CommonsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Scheme\Traits;
5 5
 
Please login to merge, or discard this patch.
src/Scheme/SchemeInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Scheme;
5 5
 
Please login to merge, or discard this patch.
src/Row.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud;
5 5
 
Please login to merge, or discard this patch.
src/Database.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud;
5 5
 
Please login to merge, or discard this patch.
src/Events/BeforeCreateRow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/SimpleCrudException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud;
5 5
 
Please login to merge, or discard this patch.
src/Scheme/Mysql.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Scheme;
5 5
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $result = $this->pdo->query("DESCRIBE `{$table}`")->fetchAll(PDO::FETCH_ASSOC);
20 20
 
21 21
         return array_map(
22
-            function ($field) {
22
+            function($field) {
23 23
                 preg_match('#^(\w+)(\((.+)\))?( unsigned)?#', $field['Type'], $matches);
24 24
 
25 25
                 $info = [
Please login to merge, or discard this patch.
src/Scheme/Cache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Scheme;
5 5
 
Please login to merge, or discard this patch.
src/Scheme/Sqlite.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Scheme;
5 5
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         $result = $this->pdo->query("pragma table_info(`{$table}`)")->fetchAll(PDO::FETCH_ASSOC);
22 22
 
23 23
         return array_map(
24
-            function ($field) {
24
+            function($field) {
25 25
                 return [
26 26
                     'name' => $field['name'],
27 27
                     'type' => strtolower($field['type']),
Please login to merge, or discard this patch.