Exemplo n.º 1
0
  public function blank() {
    
    // mark as blank if the file doesn't exist
    
    $file = $this->file();
    
    if (!$file->exists()) {
      return true;
    }
    
    return parent::blank();

  }