Puli\Repository\AbstractEditableRepository::removeVersions PHP Метод

removeVersions() защищенный Метод

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