getVanishedFiles() public method

public getVanishedFiles ( )
Example #1
0
 /**
  * @return array
  */
 public function cleanVanishedFiles() {
     $files = $this->source->getVanishedFiles();
     foreach ($files as $path) {
         $this->removeFileReferences($path);
     }
     return $files;
 }