Completed
Branch master (e3a0da)
by
unknown
15:36
created
src/Connections/MySqlConnection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
     {
13 13
         $this->useDbEnv();
14 14
 
15
-        $dsn = 'mysql:host='.$this->_host
16
-                .';port='.$this->_port
17
-                .';dbname='.$this->_database;
15
+        $dsn = 'mysql:host=' . $this->_host
16
+                .';port=' . $this->_port
17
+                .';dbname=' . $this->_database;
18 18
 
19 19
         try {
20 20
             $this->_pdo = new PDO($dsn, $this->_username, $this->_password);
Please login to merge, or discard this patch.
src/Models/Model.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -52,13 +52,13 @@  discard block
 block discarded – undo
52 52
         }
53 53
 
54 54
         if (null === $table) {
55
-            $table = strtolower(substr(get_class($this),strripos(get_class($this), "\\") + 1))."_table";
55
+            $table = strtolower(substr(get_class($this), strripos(get_class($this), "\\") + 1)) . "_table";
56 56
         }
57 57
 
58 58
         $this->setConnection($connection);
59 59
         $this->setTable($table);
60 60
 
61
-        if (! empty($array)) {
61
+        if (!empty($array)) {
62 62
             $this->setProperties($array);
63 63
         }
64 64
     }
@@ -87,14 +87,14 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function __set($property, $value)
89 89
     {
90
-        if (! is_scalar($value)) {
90
+        if (!is_scalar($value)) {
91 91
             throw new AssignmentException("{$value} is not a scalar value. Only scalar values can be assigned to the {$property} property.");
92 92
         }
93 93
 
94 94
         if (array_key_exists($property, self::$_attributes)) {
95 95
             self::$_attributes[$property] = $value;
96 96
         } else {
97
-            throw new PropertyNotFoundException("The ".get_class($this)." instance has no {$property} property.");
97
+            throw new PropertyNotFoundException("The " . get_class($this) . " instance has no {$property} property.");
98 98
         }
99 99
     }
100 100
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public static function destroy($number)
109 109
     {
110
-        if (! is_int($number)) {
110
+        if (!is_int($number)) {
111 111
             throw new InvalidArgumentException("The parameter {$number} is not an integer. An integer is required instead.");
112 112
         }
113 113
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public static function find($number)
129 129
     {
130
-        if (! is_int($number)) {
130
+        if (!is_int($number)) {
131 131
             throw new InvalidArgumentException("The parameter {$number} is not an integer. An integer is required instead.");
132 132
         }
133 133
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         $hasAttributes = false;
161 161
 
162 162
         foreach (self::$_attributes as $key => $value) {
163
-            if (! is_null($value)) {
163
+            if (!is_null($value)) {
164 164
                 $hasAttributes = true;
165 165
             }
166 166
         }
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
      */
176 176
     public function save()
177 177
     {
178
-        if (! $this->hasAttributes()) {
178
+        if (!$this->hasAttributes()) {
179 179
             throw new RuntimeException("{get_class($this)} model has nothing to persist to the database.");
180 180
         }
181 181
 
182
-        $pk = (empty(self::$_attributes[self::$_primaryKey])) ? "NULL" :  self::$_attributes[self::$_primaryKey];
182
+        $pk = (empty(self::$_attributes[self::$_primaryKey])) ? "NULL" : self::$_attributes[self::$_primaryKey];
183 183
 
184 184
         $record = self::$_connection->findRecord(self::$_table, (string) $pk);
185 185
 
Please login to merge, or discard this patch.
src/Connections/LoadEnvVariablesTrait.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
      */
58 58
     private function loadDbEnv()
59 59
     {
60
-        $dotenv = new Dotenv(__DIR__.'/../..');
60
+        $dotenv = new Dotenv(__DIR__ . '/../..');
61 61
         $dotenv->load();
62 62
 
63 63
         $dotenv->required(['DB_HOST', 'DB_DATABASE', 'DB_USERNAME', 'DB_PASSWORD', 'DB_PORT'])->notEmpty();
Please login to merge, or discard this patch.
src/Connections/DatabaseTransactionsTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
             }
37 37
 
38 38
             if ($count > 0) {
39
-                $sql = $sql."{$key}, ";
39
+                $sql = $sql . "{$key}, ";
40 40
             } else {
41
-                $sql = $sql."{$key}) ";
41
+                $sql = $sql . "{$key}) ";
42 42
             }
43 43
         }
44 44
 
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
             }
55 55
 
56 56
             if ($count > 0) {
57
-                $sql = (empty($value)) ? $sql."NULL, " : $sql."'{$value}', ";
57
+                $sql = (empty($value)) ? $sql . "NULL, " : $sql . "'{$value}', ";
58 58
             } else {
59
-                $sql = (empty($value)) ? $sql."NULL " : $sql."'{$value}') ";
59
+                $sql = (empty($value)) ? $sql . "NULL " : $sql . "'{$value}') ";
60 60
             }
61 61
         }
62 62
 
@@ -143,9 +143,9 @@  discard block
 block discarded – undo
143 143
         $sql = "UPDATE {$table} SET ";
144 144
         foreach ($record as $key => $value) {
145 145
             if ($count > 1) {
146
-                $sql = $sql."{$key}={$value}, ";
146
+                $sql = $sql . "{$key}={$value}, ";
147 147
             } else {
148
-                $sql = $sql."{$key}={$value} ";
148
+                $sql = $sql . "{$key}={$value} ";
149 149
             }
150 150
             $count--;
151 151
         }
Please login to merge, or discard this patch.