Esempio n. 1
0
 /**
  * @inheritdoc
  */
 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes);
     if (!file_exists($this->filePath)) {
         touch($this->filePath);
     }
 }
Esempio n. 2
0
 /**
  * @inheritdoc
  */
 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes);
     $this->connection = new PDO($this->dsn, $this->username, $this->password);
 }