fix nooplockingprovider

This commit is contained in:
Robin Appelman 2015-06-01 13:25:27 +02:00
parent ce04cf6610
commit 8902e2be73

View file

@ -51,10 +51,17 @@ class NoopLockingProvider implements ILockingProvider {
// do nothing
}
/**
* release all lock acquired by this instance
/**1
* {@inheritdoc}
*/
public function releaseAll() {
// do nothing
}
/**
* {@inheritdoc}
*/
public function changeLock($path, $targetType) {
// do nothing
}
}