Craft\Minimee_BaseAssetModel::exists PHP Method

exists() public method

public exists ( ) : Bool
return Bool
    public function exists()
    {
        if ($this->_exists === null) {
            $this->_exists = false;
        }
        return $this->_exists;
    }