Newscoop\Entity\Resource::exists PHP Метод

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

Check if the resource exists
public exists ( ) : boolean
Результат boolean True always for now
    public function exists()
    {
        return !empty($this->path) && !empty($this->id);
    }

Usage Example

 public function exists()
 {
     $this->__load();
     return parent::exists();
 }