execute() публичный Метод

Commands must be defined as methods named after the command, prefixed with execute (eg. create -> executeCreate)
public execute ( array $args, array $options = [] )
$args array
$options array
Пример #1
0
 public function execute(array $args, array $options = array())
 {
     if (isset($options['verbose'])) {
         $this->verbose = isset($options['verbose']);
     }
     return parent::execute($args, $options);
 }