]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/Addon.php
Merge remote-tracking branch 'upstream/develop' into api4
[friendica.git] / src / Console / Addon.php
index c1d434bbeb730445ed135bd4cb537f26acc8b0fa..3577982ba72bdb2f3c484ce7d3baed7a0d9269d0 100644 (file)
@@ -55,9 +55,9 @@ class Addon extends \Asika\SimpleConsole\Console
                $help = <<<HELP
 console user - Modify addon settings per console commands.
 Usage
-       bin/console addon list all [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
-       bin/console addon list enabled [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
-       bin/console addon list disabled [-s|--start=0] [-c|--count=50] [-h|--help|-?] [-v]
+       bin/console addon list all [-h|--help|-?] [-v]
+       bin/console addon list enabled [-h|--help|-?] [-v]
+       bin/console addon list disabled [-h|--help|-?] [-v]
        bin/console addon enable <addonname> [-h|--help|-?] [-v]
        bin/console addon disable <addonname> [-h|--help|-?] [-v]
 
@@ -123,8 +123,6 @@ HELP;
        private function list()
        {
                $subCmd = $this->getArgument(1);
-               $start = $this->getOption(['s', 'start'], 0);
-               $count = $this->getOption(['c', 'count'], Pager::ITEMS_PER_PAGE);
 
                $table = new Console_Table();
                switch ($subCmd) {