public function __construct($field, $error_message, PDO $pdo, $table, $primary_key = 'id') { parent::__construct($field, $error_message); $this->pdo = $pdo; $this->primary_key = $primary_key; $this->table = $table; }
public function __construct($field, $error_message, PDO $pdo, $table, $key = '') { parent::__construct($field, $error_message); $this->pdo = $pdo; $this->table = $table; $this->key = $key; }
public function __construct($field, $error_message, array $formats) { parent::__construct($field, $error_message); $this->formats = $formats; }