public function ListCommand::addOption in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/ProxyClass/Command/ListCommand.php \Drupal\webprofiler\ProxyClass\Command\ListCommand::addOption()
- 8.2 webprofiler/src/ProxyClass/Command/ListCommand.php \Drupal\webprofiler\ProxyClass\Command\ListCommand::addOption()
- 4.x webprofiler/src/ProxyClass/Command/ListCommand.php \Drupal\webprofiler\ProxyClass\Command\ListCommand::addOption()
File
- webprofiler/src/ ProxyClass/ Command/ ListCommand.php, line 171 
Class
- ListCommand
- Provides a proxy class for \Drupal\webprofiler\Command\ListCommand.
Namespace
Drupal\webprofiler\ProxyClass\CommandCode
public function addOption($name, $shortcut = NULL, $mode = NULL, $description = '', $default = NULL) {
  return $this
    ->lazyLoadItself()
    ->addOption($name, $shortcut, $mode, $description, $default);
}