App\Repositories\AbstractConfigRepository::__construct PHP Method

__construct() public method

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
return void
    public function __construct(ConfigReaderInterface $reader, ConfigWriterInterface $writer)
    {
        $this->reader = $reader;
        $this->writer = $writer;
    }