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

Removes all versions stored for a path.
public purge ( string $path )
$path string The Puli path.
 /**
  * Removes all versions of a resource from the change stream.
  *
  * @param string $path The Puli path.
  */
 protected function removeVersions($path)
 {
     if (null !== $this->changeStream) {
         $this->changeStream->purge($path);
     }
 }