Ejemplo n.º 1
0
 /**
  * The constructor
  *
  * @param array $config
  */
 public function __construct($config = [])
 {
     parent::__construct($config);
     $defaults = ['fetch' => PDO::FETCH_ASSOC];
     $config += $defaults;
     $this->_fetch = $config['fetch'];
 }