Skip to content

Commit fa5a553

Browse files
committed
Update AbstractCustomCommand.php
1 parent 178d285 commit fa5a553

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/Ubiquity/devtools/cmd/commands/AbstractCustomCommand.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,15 @@ public function getCommand() {
7777
return $this->command;
7878
}
7979

80-
abstract public function run(&$config, $options, $what, ...$otherArgs);
80+
/**
81+
* Run this command.
82+
*
83+
* @param array $config
84+
* The Ubiquity application config array.
85+
* @param array $options
86+
* @param string $what
87+
* @param mixed ...$otherArgs
88+
*/
89+
abstract public function run($config, $options, $what, ...$otherArgs);
8190
}
8291

0 commit comments

Comments
 (0)