Dmyers\Storage\Adapter\Local::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        $path = $this->config('path');
        if (!\File::isDirectory($path)) {
            \File::makeDirectory($path, 0777, true);
        }
    }