Platformsh\Cli\Command\Activity\ActivityLogCommand::configure PHP Метод

configure() защищенный Метод

protected configure ( )
    protected function configure()
    {
        $this->setName('activity:log')->addArgument('id', InputArgument::OPTIONAL, 'The activity ID. Defaults to the most recent activity.')->addOption('refresh', null, InputOption::VALUE_REQUIRED, 'Log refresh interval (seconds). Set to 0 to disable refreshing.', 1)->addOption('type', null, InputOption::VALUE_REQUIRED, 'Filter activities by type')->addOption('all', 'a', InputOption::VALUE_NONE, 'Check activities on all environments')->setDescription('Display the log for an activity');
        $this->addProjectOption()->addEnvironmentOption();
        $this->addExample('Display the log for the last push on the current environment', '--type environment.push')->addExample('Display the log for the last activity on the current project', '--all');
    }
ActivityLogCommand