App\Repositories\AbstractConfigRepository::__construct PHP Метод

__construct() публичный Метод

Create a new repository instance.
public __construct ( App\Services\Config\ConfigReaderInterface $reader, App\Services\Config\ConfigWriterInterface $writer ) : void
$reader App\Services\Config\ConfigReaderInterface
$writer App\Services\Config\ConfigWriterInterface
Результат void
    public function __construct(ConfigReaderInterface $reader, ConfigWriterInterface $writer)
    {
        $this->reader = $reader;
        $this->writer = $writer;
    }