Completed
Pull Request — master (#41)
by Thomas
03:37
created
src/EntityManager.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@
 block discarded – undo
337 337
      *
338 338
      * Without $primaryKey it creates an entityFetcher and returns this.
339 339
      *
340
-     * @param string|Entity $class      The entity class you want to fetch
340
+     * @param string $class      The entity class you want to fetch
341 341
      * @param mixed         $primaryKey The primary key of the entity you want to fetch
342 342
      * @return Entity|EntityFetcher
343 343
      * @throws IncompletePrimaryKey
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,6 @@
 block discarded – undo
10 10
 use ORM\Exception\InvalidConfiguration;
11 11
 use ORM\Exception\NoConnection;
12 12
 use ORM\Exception\NoEntity;
13
-use ORM\Exception\NotScalar;
14
-use ORM\Exception\UnsupportedDriver;
15 13
 
16 14
 /**
17 15
  * The EntityManager that manages the instances of Entities.
Please login to merge, or discard this patch.
src/Dbal/Sqlite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $rawColumns = $result->fetchAll(\PDO::FETCH_ASSOC);
58 58
 
59 59
         if (count($rawColumns) === 0) {
60
-            throw new Exception('Unknown table '  . $table);
60
+            throw new Exception('Unknown table ' . $table);
61 61
         }
62 62
 
63 63
         $hasMultiplePrimaryKey = $this->hasMultiplePrimaryKey($rawColumns);
Please login to merge, or discard this patch.
src/Dbal/Mysql.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,7 @@
 block discarded – undo
91 91
 
92 92
         $definition['column_name'] = $rawColumn['Field'];
93 93
         $definition['is_nullable'] = $rawColumn['Null'] === 'YES';
94
-        $definition['column_default'] = $rawColumn['Default'] !== null ? $rawColumn['Default'] :
95
-            ($rawColumn['Extra'] === 'auto_increment' ? 'sequence(AUTO_INCREMENT)' : null);
94
+        $definition['column_default'] = $rawColumn['Default'] !== null ? $rawColumn['Default'] : ($rawColumn['Extra'] === 'auto_increment' ? 'sequence(AUTO_INCREMENT)' : null);
96 95
         $definition['character_maximum_length'] = null;
97 96
         $definition['datetime_precision'] = null;
98 97
 
Please login to merge, or discard this patch.
src/Dbal/Pgsql.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         $result = $this->entityManager->getConnection()->query($query->getQuery());
73 73
         $rawColumns = $result->fetchAll(PDO::FETCH_ASSOC);
74 74
         if (count($rawColumns) === 0) {
75
-            throw new Exception('Unknown table '  . $schemaTable);
75
+            throw new Exception('Unknown table ' . $schemaTable);
76 76
         }
77 77
 
78 78
         $cols = array_map(function ($columnDefinition) {
Please login to merge, or discard this patch.
src/Dbal/Type/Set.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,12 +18,12 @@
 block discarded – undo
18 18
     public function validate($value)
19 19
     {
20 20
         if (!is_string($value)) {
21
-            return new NoString([ 'type' => 'set' ]);
21
+            return new NoString(['type' => 'set']);
22 22
         } else {
23 23
             $values = explode(',', $value);
24 24
             foreach ($values as $value) {
25 25
                 if (!in_array($value, $this->allowedValues)) {
26
-                    return new NotAllowed([ 'value' => $value, 'type' => 'set' ]);
26
+                    return new NotAllowed(['value' => $value, 'type' => 'set']);
27 27
                 }
28 28
             }
29 29
         }
Please login to merge, or discard this patch.
src/Dbal/Type/Time.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
                 return new Error([], 'DATETIME', 'DateTime is not allowed for time');
27 27
             }
28 28
 
29
-            return new NoTime([ 'value' => (string)$value ]);
29
+            return new NoTime(['value' => (string) $value]);
30 30
         }
31 31
 
32 32
         return true;
Please login to merge, or discard this patch.
src/Dbal/Type/DateTime.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,10 +32,9 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function __construct($precision = null, $dateOnly = false)
34 34
     {
35
-        $this->precision = (int)$precision;
35
+        $this->precision = (int) $precision;
36 36
         $this->regex = $dateOnly ?
37
-            '/^' . self::DATE_REGEX . '([ T]' . self::TIME_REGEX . self::ZONE_REGEX . ')?$/' :
38
-            '/^' . self::DATE_REGEX . '[ T]' . self::TIME_REGEX . self::ZONE_REGEX . '$/';
37
+            '/^' . self::DATE_REGEX . '([ T]' . self::TIME_REGEX . self::ZONE_REGEX . ')?$/' : '/^' . self::DATE_REGEX . '[ T]' . self::TIME_REGEX . self::ZONE_REGEX . '$/';
39 38
     }
40 39
 
41 40
     public static function factory(Dbal $dbal, array $columnDefinition)
@@ -49,7 +48,7 @@  discard block
 block discarded – undo
49 48
     public function validate($value)
50 49
     {
51 50
         if (!$value instanceof \DateTime && (!is_string($value) || !preg_match($this->regex, $value))) {
52
-            return new NoDateTime([ 'value' => (string)$value ]);
51
+            return new NoDateTime(['value' => (string) $value]);
53 52
         }
54 53
 
55 54
         return true;
Please login to merge, or discard this patch.
src/Dbal/Type/Enum.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
41 41
     public function validate($value)
42 42
     {
43 43
         if (!is_string($value)) {
44
-            return new NoString([ 'type' => 'enum' ]);
44
+            return new NoString(['type' => 'enum']);
45 45
         } elseif (!in_array($value, $this->allowedValues)) {
46
-            return new NotAllowed([ 'value' => $value, 'type' => 'enum' ]);
46
+            return new NotAllowed(['value' => $value, 'type' => 'enum']);
47 47
         }
48 48
 
49 49
         return true;
Please login to merge, or discard this patch.
src/Dbal/Type/VarChar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function __construct($maxLength = null)
32 32
     {
33
-        $this->maxLength = (int)$maxLength;
33
+        $this->maxLength = (int) $maxLength;
34 34
     }
35 35
 
36 36
     public static function factory(Dbal $dbal, array $columnDefinition)
@@ -41,9 +41,9 @@  discard block
 block discarded – undo
41 41
     public function validate($value)
42 42
     {
43 43
         if (!is_string($value)) {
44
-            return new NoString([ 'type' => $this->type ]);
44
+            return new NoString(['type' => $this->type]);
45 45
         } elseif ($this->maxLength !== 0 && mb_strlen($value) > $this->maxLength) {
46
-            return new TooLong([ 'value' => $value, 'max' => $this->maxLength ]);
46
+            return new TooLong(['value' => $value, 'max' => $this->maxLength]);
47 47
         }
48 48
 
49 49
         return true;
Please login to merge, or discard this patch.