Completed
Push — develop ( 3f7eb4...5c5c48 )
by Oyebanji Jacob
04:34 queued 02:18
created
src/Model.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
     /**
204 204
      * Save the model data to the database.
205 205
      *
206
-     * @return bool
206
+     * @return integer
207 207
      */
208 208
     public function save()
209 209
     {
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -152,17 +152,17 @@  discard block
 block discarded – undo
152 152
     public function update()
153 153
     {
154 154
         $bindNameParameters = [];
155
-        $sqlUpdate = 'UPDATE '.$this->getTableName().' SET ';
155
+        $sqlUpdate = 'UPDATE ' . $this->getTableName() . ' SET ';
156 156
         foreach ($this->properties as $columnName => $columnValue) {
157 157
             if ($columnName == 'id') {
158 158
                 continue;
159 159
             }
160
-            $bindColumnName = ':'.$columnName;
160
+            $bindColumnName = ':' . $columnName;
161 161
             $sqlUpdate .= "$columnName = $bindColumnName,";
162 162
             $bindNameParameters[$bindColumnName] = $columnValue;
163 163
         }
164 164
         //Remove the last comma in sql command then join it to the other query part.
165
-        $sqlUpdate = substr($sqlUpdate, 0, -1).' WHERE id = :id';
165
+        $sqlUpdate = substr($sqlUpdate, 0, -1) . ' WHERE id = :id';
166 166
         $sqlStatement = $this->databaseConnection->prepare($sqlUpdate);
167 167
         $bindNameParameters[':id'] = $this->properties['id'];
168 168
         $sqlStatement->execute($bindNameParameters);
@@ -180,18 +180,18 @@  discard block
 block discarded – undo
180 180
         $columnNames = '';
181 181
         $columnValues = '';
182 182
         $bindNameParameters = [];
183
-        $sqlCreate = 'INSERT'.' INTO '.$this->getTableName().' (';
183
+        $sqlCreate = 'INSERT' . ' INTO ' . $this->getTableName() . ' (';
184 184
         foreach ($this->properties as $columnName => $columnValue) {
185
-            $bindColumnName = ':'.$columnName;
186
-            $columnNames .= $columnName.',';
187
-            $columnValues .= $bindColumnName.',';
185
+            $bindColumnName = ':' . $columnName;
186
+            $columnNames .= $columnName . ',';
187
+            $columnValues .= $bindColumnName . ',';
188 188
             $bindNameParameters[$bindColumnName] = $columnValue;
189 189
         }
190 190
         // Remove ending comma and whitespace.
191 191
         $columnNames = substr($columnNames, 0, -1);
192 192
         $columnValues = substr($columnValues, 0, -1);
193 193
 
194
-        $sqlCreate .= $columnNames.') VALUES ('.$columnValues.')';
194
+        $sqlCreate .= $columnNames . ') VALUES (' . $columnValues . ')';
195 195
         $sqlStatement = $this->databaseConnection->prepare($sqlCreate);
196 196
         $sqlStatement->execute($bindNameParameters);
197 197
 
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     public function delete($id)
233 233
     {
234
-        $sql = 'DELETE'.' FROM '.self::getTableName().' WHERE id = '.$id;
234
+        $sql = 'DELETE' . ' FROM ' . self::getTableName() . ' WHERE id = ' . $id;
235 235
         $sqlStatment = $this->databaseConnection->prepare($sql);
236 236
         $sqlStatment->execute();
237 237
 
Please login to merge, or discard this patch.
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -24,23 +24,23 @@  discard block
 block discarded – undo
24 24
      */
25 25
     protected $databaseConnection;
26 26
 
27
-     /**
28
-      *  The id of the model.
29
-      *
30
-      * @property string $id
31
-      */
32
-
33
-     /**
34
-      * Create a model instance.
35
-      */
36
-     public function __construct(DatabaseConnectionInterface $databaseConnection = null)
37
-     {
38
-         if ($databaseConnection == null) {
39
-             $this->databaseConnection = DatabaseConnection::getInstance()->databaseConnection;
40
-         } else {
41
-             $this->databaseConnection = $databaseConnection;
42
-         }
43
-     }
27
+        /**
28
+         *  The id of the model.
29
+         *
30
+         * @property string $id
31
+         */
32
+
33
+        /**
34
+         * Create a model instance.
35
+         */
36
+        public function __construct(DatabaseConnectionInterface $databaseConnection = null)
37
+        {
38
+            if ($databaseConnection == null) {
39
+                $this->databaseConnection = DatabaseConnection::getInstance()->databaseConnection;
40
+            } else {
41
+                $this->databaseConnection = $databaseConnection;
42
+            }
43
+        }
44 44
 
45 45
     /**
46 46
      * Sets into $properties the $key => $value pairs.
@@ -65,23 +65,23 @@  discard block
 block discarded – undo
65 65
         }
66 66
     }
67 67
 
68
-     /**
69
-      * Get all the model properties.
70
-      *
71
-      * @return array
72
-      */
73
-     public function getProperties()
74
-     {
75
-         return $this->properties;
76
-     }
77
-
78
-     /**
79
-      * Set model properties.
80
-      */
81
-     public function setProperties(array $properties)
82
-     {
83
-         $this->properties = $properties;
84
-     }
68
+        /**
69
+         * Get all the model properties.
70
+         *
71
+         * @return array
72
+         */
73
+        public function getProperties()
74
+        {
75
+            return $this->properties;
76
+        }
77
+
78
+        /**
79
+         * Set model properties.
80
+         */
81
+        public function setProperties(array $properties)
82
+        {
83
+            $this->properties = $properties;
84
+        }
85 85
 
86 86
     /**
87 87
      * Pluralize the name of the child class.
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Inflector\Inflector;
6 6
 use PDO;
7
-use Pyjac\ORM\Exception\ModelNotFoundException;
8 7
 
9 8
 abstract class Model implements ModelInterface
10 9
 {
Please login to merge, or discard this patch.
src/DatabaseConnectionStringFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,16 +22,16 @@
 block discarded – undo
22 22
 
23 23
         switch ($driver) {
24 24
             case 'sqlite':
25
-                $dsn = $driver.'::memory:';
25
+                $dsn = $driver . '::memory:';
26 26
                 break;
27 27
             case 'mysql':
28 28
             case 'postgres':
29 29
                 if (strcasecmp($driver, 'postgres') == 0) {
30 30
                     $driver = 'pgsql';
31 31
                 }
32
-                $dsn = $driver.':host='.$config['HOSTNAME'].';dbname='.$config['DBNAME'];
32
+                $dsn = $driver . ':host=' . $config['HOSTNAME'] . ';dbname=' . $config['DBNAME'];
33 33
                 if (isset($config['PORT'])) {
34
-                    $dsn .= ';port='.$config['PORT'];
34
+                    $dsn .= ';port=' . $config['PORT'];
35 35
                 }
36 36
                 break;
37 37
             default:
Please login to merge, or discard this patch.
src/Exception/ModelNotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,6 @@
 block discarded – undo
7 7
 {
8 8
     public function __construct($id)
9 9
     {
10
-        parent::__construct('The requested Model with '.$id.' does not exist');
10
+        parent::__construct('The requested Model with ' . $id . ' does not exist');
11 11
     }
12 12
 }
Please login to merge, or discard this patch.
test/ModelTest.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
                         m::mock('Pyjac\ORM\DatabaseConnectionStringFactoryInterface');
22 22
 
23 23
         $databaseConnectionStringFactory->shouldReceive('createDatabaseSourceString')
24
-                                             ->with(['DRIVER' => 'sqlite', 'HOSTNAME' => '127.0.0.1', 'USERNAME' => '', 'PASSWORD' => '', 'DBNAME' => 'potatoORM', 'PORT' => '54320'])->once()->andReturn('sqlite::memory:');
24
+                                                ->with(['DRIVER' => 'sqlite', 'HOSTNAME' => '127.0.0.1', 'USERNAME' => '', 'PASSWORD' => '', 'DBNAME' => 'potatoORM', 'PORT' => '54320'])->once()->andReturn('sqlite::memory:');
25 25
 
26 26
         $this->databaseConnection = m::mock('Pyjac\ORM\DatabaseConnection');
27 27
 
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $this->databaseConnection->shouldReceive('createConnection')->with('sqlite::memory:')->once()->andReturn('');
38 38
         $this->model->expects($this->any())
39
-             ->method('getTableName')
40
-             ->will($this->returnValue(strtolower(get_class($this->model).'s')));
39
+                ->method('getTableName')
40
+                ->will($this->returnValue(strtolower(get_class($this->model).'s')));
41 41
 
42 42
         $this->assertEquals($this->model->getTableName(), strtolower(get_class($this->model).'s'));
43 43
     }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
37 37
         $this->databaseConnection->shouldReceive('createConnection')->with('sqlite::memory:')->once()->andReturn('');
38 38
         $this->model->expects($this->any())
39 39
              ->method('getTableName')
40
-             ->will($this->returnValue(strtolower(get_class($this->model).'s')));
40
+             ->will($this->returnValue(strtolower(get_class($this->model) . 's')));
41 41
 
42
-        $this->assertEquals($this->model->getTableName(), strtolower(get_class($this->model).'s'));
42
+        $this->assertEquals($this->model->getTableName(), strtolower(get_class($this->model) . 's'));
43 43
     }
44 44
 
45 45
     public function testGetReturnsAnObjectWhenIdIsFoundInDatabase()
Please login to merge, or discard this patch.
test/DatabaseConnectionTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
         $databaseConnectionStringFactory =
16 16
                         m::mock('Pyjac\ORM\DatabaseConnectionStringFactoryInterface');
17 17
         $databaseConnectionStringFactory->shouldReceive('createDatabaseSourceString')
18
-                                             ->with(['DRIVER' => 'sqlite', 'HOSTNAME' => '127.0.0.1', 'USERNAME' => '', 'PASSWORD' => '', 'DBNAME' => 'potatoORM', 'PORT' => '54320'])->once()->andReturn('sqlite::memory:');
18
+                                                ->with(['DRIVER' => 'sqlite', 'HOSTNAME' => '127.0.0.1', 'USERNAME' => '', 'PASSWORD' => '', 'DBNAME' => 'potatoORM', 'PORT' => '54320'])->once()->andReturn('sqlite::memory:');
19 19
 
20 20
         $this->databaseConnection = new DatabaseConnection($databaseConnectionStringFactory);
21 21
     }
Please login to merge, or discard this patch.
src/DatabaseConnection.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -160,16 +160,16 @@
 block discarded – undo
160 160
         ]);
161 161
     }
162 162
 
163
-     /**
164
-      * Load needed configuration values from the .env file using Dotenv.
165
-      *
166
-      * @return void
167
-      */
168
-     public function loadEnv()
169
-     {
170
-         if (!getenv('APP_ENV')) {
171
-             $dotenv = new \Dotenv\Dotenv(__DIR__.'/../../../');
172
-             $dotenv->overload();
173
-         }
174
-     }
163
+        /**
164
+         * Load needed configuration values from the .env file using Dotenv.
165
+         *
166
+         * @return void
167
+         */
168
+        public function loadEnv()
169
+        {
170
+            if (!getenv('APP_ENV')) {
171
+                $dotenv = new \Dotenv\Dotenv(__DIR__.'/../../../');
172
+                $dotenv->overload();
173
+            }
174
+        }
175 175
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
      public function loadEnv()
169 169
      {
170 170
          if (!getenv('APP_ENV')) {
171
-             $dotenv = new \Dotenv\Dotenv(__DIR__.'/../../../');
171
+             $dotenv = new \Dotenv\Dotenv(__DIR__ . '/../../../');
172 172
              $dotenv->overload();
173 173
          }
174 174
      }
Please login to merge, or discard this patch.