onlyNotMarkedToDelete() public method

Только не помеченные на удаление
public onlyNotMarkedToDelete ( ) : static
return static
Example #1
0
 /**
  * @param RequestCollection $data
  * @return void
  */
 public function put(RequestCollection $data)
 {
     $this->createDirectoryIfNotExists();
     $content = $this->prepareContent($data->onlyNotMarkedToDelete());
     $this->files->put($this->getFilePath(), $content);
 }