ZF\Apigility\Admin\Controller\FsPermissionsController::rootIsWritable PHP Method

rootIsWritable() protected method

Is the application root writable?
protected rootIsWritable ( ) : boolean
return boolean
    protected function rootIsWritable()
    {
        if (null !== $this->rootIsWritable) {
            return $this->rootIsWritable;
        }
        $this->rootIsWritable = is_writable($this->root);
        return $this->rootIsWritable;
    }