@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Defining Interface for class DatabaseQueryInterface. |
|
4 | - * |
|
5 | - * @package Ibonly\PotatoORM\DatabaseQueryInterface |
|
6 | - * @author Ibraheem ADENIYI <[email protected]> |
|
7 | - * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | - */ |
|
3 | + * Defining Interface for class DatabaseQueryInterface. |
|
4 | + * |
|
5 | + * @package Ibonly\PotatoORM\DatabaseQueryInterface |
|
6 | + * @author Ibraheem ADENIYI <[email protected]> |
|
7 | + * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Ibonly\PotatoORM; |
11 | 11 |
@@ -11,9 +11,9 @@ |
||
11 | 11 | |
12 | 12 | interface DatabaseQueryInterface |
13 | 13 | { |
14 | - public function checkTableExist($table, $con=NULL); |
|
14 | + public function checkTableExist($table, $con = NULL); |
|
15 | 15 | |
16 | - public static function checkTableName($table, $dbConnection=NULL); |
|
16 | + public static function checkTableName($table, $dbConnection = NULL); |
|
17 | 17 | |
18 | 18 | public static function selectQuery($tableName, $field, $value, $connection); |
19 | 19 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Defining Interface for class GetData. |
|
4 | - * |
|
5 | - * @package Ibonly\PotatoORM\ModelInterface |
|
6 | - * @author Ibraheem ADENIYI <[email protected]> |
|
7 | - * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | - */ |
|
3 | + * Defining Interface for class GetData. |
|
4 | + * |
|
5 | + * @package Ibonly\PotatoORM\ModelInterface |
|
6 | + * @author Ibraheem ADENIYI <[email protected]> |
|
7 | + * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Ibonly\PotatoORM; |
11 | 11 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Defining Interface for class Model. |
|
4 | - * |
|
5 | - * @package Ibonly\PotatoORM\ModelInterface |
|
6 | - * @author Ibraheem ADENIYI <[email protected]> |
|
7 | - * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | - */ |
|
3 | + * Defining Interface for class Model. |
|
4 | + * |
|
5 | + * @package Ibonly\PotatoORM\ModelInterface |
|
6 | + * @author Ibraheem ADENIYI <[email protected]> |
|
7 | + * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Ibonly\PotatoORM; |
11 | 11 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Exception for user already exist |
|
4 | - * |
|
5 | - * @package Ibonly\PotatoORM\DataAlreadyExistException |
|
6 | - * @author Ibraheem ADENIYI <[email protected]> |
|
7 | - * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | - */ |
|
3 | + * Exception for user already exist |
|
4 | + * |
|
5 | + * @package Ibonly\PotatoORM\DataAlreadyExistException |
|
6 | + * @author Ibraheem ADENIYI <[email protected]> |
|
7 | + * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Ibonly\PotatoORM; |
11 | 11 |
@@ -25,6 +25,6 @@ |
||
25 | 25 | */ |
26 | 26 | public function errorMessage() |
27 | 27 | { |
28 | - return "Error: " . $this->getMessage(); |
|
28 | + return "Error: ".$this->getMessage(); |
|
29 | 29 | } |
30 | 30 | } |
31 | 31 | \ No newline at end of file |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Exception for user not found |
|
4 | - * |
|
5 | - * @package Ibonly\PotatoORM\DataNotFoundException |
|
6 | - * @author Ibraheem ADENIYI <[email protected]> |
|
7 | - * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | - */ |
|
3 | + * Exception for user not found |
|
4 | + * |
|
5 | + * @package Ibonly\PotatoORM\DataNotFoundException |
|
6 | + * @author Ibraheem ADENIYI <[email protected]> |
|
7 | + * @license MIT <https://opensource.org/licenses/MIT> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Ibonly\PotatoORM; |
11 | 11 |
@@ -25,6 +25,6 @@ |
||
25 | 25 | */ |
26 | 26 | public function errorMessage() |
27 | 27 | { |
28 | - return "Error: " . $this->getMessage(); |
|
28 | + return "Error: ".$this->getMessage(); |
|
29 | 29 | } |
30 | 30 | } |
31 | 31 | \ No newline at end of file |
@@ -28,10 +28,10 @@ |
||
28 | 28 | foreach (json_decode($this->all()) as $key) { |
29 | 29 | return $key->$name; |
30 | 30 | } |
31 | - } |
|
31 | + } |
|
32 | 32 | |
33 | - public function getCount() |
|
34 | - { |
|
33 | + public function getCount() |
|
34 | + { |
|
35 | 35 | return sizeof($this->value); |
36 | - } |
|
36 | + } |
|
37 | 37 | } |
38 | 38 | \ No newline at end of file |