X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FConsole%2FLock.php;h=eea5d51e10fa252bba1432c004786cd8b89e3018;hb=9160fde8ca8cbf5e4d37923f4ce4560f5f6dc0be;hp=da1f408d0d1ab3b74f0a346d2669cdd1a9b7cebf;hpb=31457b8566458efaeb20945cdfc56f6b6897dc53;p=friendica.git diff --git a/src/Console/Lock.php b/src/Console/Lock.php index da1f408d0d..eea5d51e10 100644 --- a/src/Console/Lock.php +++ b/src/Console/Lock.php @@ -1,19 +1,36 @@ . + * + */ namespace Friendica\Console; use Asika\SimpleConsole\CommandArgsException; use Friendica\App; -use Friendica\Core\Lock\ILock; +use Friendica\Core\Lock\Capability\ICanLock; use RuntimeException; /** - * @brief tool to access the locks from the CLI + * tool to access the locks from the CLI * * With this script you can access the locks of your node from the CLI. * You can read current locks and set/remove locks. - * - * @author Philipp Holzer , Hypolite Petovan */ class Lock extends \Asika\SimpleConsole\Console { @@ -25,7 +42,7 @@ class Lock extends \Asika\SimpleConsole\Console private $appMode; /** - * @var ILock + * @var ICanLock */ private $lock; @@ -59,7 +76,7 @@ HELP; return $help; } - public function __construct(App\Mode $appMode, ILock $lock, array $argv = null) + public function __construct(App\Mode $appMode, ICanLock $lock, array $argv = null) { parent::__construct($argv);