| @@ -13,7 +13,6 @@ | ||
| 13 | 13 | use PDOException; | 
| 14 | 14 | use Ibonly\PotatoORM\DatabaseQueryInterface; | 
| 15 | 15 | use Ibonly\PotatoORM\ColumnNotExistExeption; | 
| 16 | -use Ibonly\PotatoORM\InvalidConnectionException; | |
| 17 | 16 | use Ibonly\PotatoORM\TableDoesNotExistException; | 
| 18 | 17 | |
| 19 | 18 | class DatabaseQuery implements DatabaseQueryInterface | 
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * This class handles building sql query statement and check | |
| 4 | - * that the table exist in the database. | |
| 5 | - * | |
| 6 | - * @package Ibonly\PotatoORM\DatabaseQuery | |
| 7 | - * @author Ibraheem ADENIYI <[email protected]> | |
| 8 | - * @license MIT <https://opensource.org/licenses/MIT> | |
| 9 | - */ | |
| 3 | + * This class handles building sql query statement and check | |
| 4 | + * that the table exist in the database. | |
| 5 | + * | |
| 6 | + * @package Ibonly\PotatoORM\DatabaseQuery | |
| 7 | + * @author Ibraheem ADENIYI <[email protected]> | |
| 8 | + * @license MIT <https://opensource.org/licenses/MIT> | |
| 9 | + */ | |
| 10 | 10 | |
| 11 | 11 | namespace Ibonly\PotatoORM; | 
| 12 | 12 | |
| @@ -1,11 +1,11 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | /** | 
| 3 | - * Exception for user not found | |
| 4 | - * | |
| 5 | - * @package Ibonly\PotatoORM\ColumnNotExistExeption | |
| 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\ColumnNotExistExeption | |
| 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 no records in database | |
| 4 | - * | |
| 5 | - * @package Ibonly\PotatoORM\EmptyDatabaseException | |
| 6 | - * @author Ibraheem ADENIYI <[email protected]> | |
| 7 | - * @license MIT <https://opensource.org/licenses/MIT> | |
| 8 | - */ | |
| 3 | + * Exception for no records in database | |
| 4 | + * | |
| 5 | + * @package Ibonly\PotatoORM\EmptyDatabaseException | |
| 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\ErrorInsertingException | |
| 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\ErrorInsertingException | |
| 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 not found | |
| 4 | - * | |
| 5 | - * @package Ibonly\PotatoORM\InvalidConnectionException | |
| 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\InvalidConnectionException | |
| 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\SaveUserExistException | |
| 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\SaveUserExistException | |
| 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 not found | |
| 4 | - * | |
| 5 | - * @package Ibonly\PotatoORM\TableDoesNotExistException | |
| 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\TableDoesNotExistException | |
| 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 not found | |
| 4 | - * | |
| 5 | - * @package Ibonly\PotatoORM\UserNotFoundException | |
| 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\UserNotFoundException | |
| 6 | + * @author Ibraheem ADENIYI <[email protected]> | |
| 7 | + * @license MIT <https://opensource.org/licenses/MIT> | |
| 8 | + */ | |
| 9 | 9 | |
| 10 | 10 | namespace Ibonly\PotatoORM; | 
| 11 | 11 | |
| @@ -21,12 +21,12 @@ | ||
| 21 | 21 | public function getData($name) | 
| 22 | 22 |      { | 
| 23 | 23 |          foreach (json_decode($this->all()) as $key) { | 
| 24 | - return $key->$name; | |
| 24 | + return $key->$name; | |
| 25 | 25 | } | 
| 26 | - } | |
| 26 | + } | |
| 27 | 27 | |
| 28 | - public function getCount() | |
| 29 | -   { | |
| 28 | + public function getCount() | |
| 29 | +    { | |
| 30 | 30 | return sizeof($this->value); | 
| 31 | - } | |
| 31 | + } | |
| 32 | 32 | } | 
| 33 | 33 | \ No newline at end of file |