kola-er / potato-orm

ORM package that manages the persistence of database CRUD operations.
MIT License
1 stars 1 forks source link

DbConn.php #4

Closed unicodeveloper closed 9 years ago

unicodeveloper commented 9 years ago
namespace Kola\PotatoOrm\Helper;
use Kola\PotatoOrm\Exception\UnsuccessfulDbConnException as ConnEx;
use \PDO;

Imports should be from shortest to longest. Rearrange

  /**
     * Override the parent class PDO constructor to prevent instantiation-argument requirement
     */
    public function __construct()
    {
    }

Any reason why there is an empty constructor here?

kola-er commented 9 years ago

Amended