Used setters into class constructors

This commit is contained in:
ErickSkrauch 2016-04-30 12:26:39 +03:00
parent 676d2bee6d
commit 094ef807c5
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ class Storage implements StorageInterface
*/ */
public function __construct(array $items = []) public function __construct(array $items = [])
{ {
$this->items = $items; $this->setItems($items);
} }
/** /**

View File

@ -22,8 +22,8 @@ class Validator
*/ */
public function __construct(StorageInterface $primaryStorage, StorageInterface $secondaryStorage = null) public function __construct(StorageInterface $primaryStorage, StorageInterface $secondaryStorage = null)
{ {
$this->primaryStorage = $primaryStorage; $this->setPrimaryStorage($primaryStorage);
$this->secondaryStorage = $secondaryStorage; $this->setSecondaryStorage($secondaryStorage);
} }
/** /**