for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the webmozart/console package.
*
* (c) Bernhard Schussek <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Webmozart\Console\Handler;
use Webmozart\Console\Api\Args\Args;
use Webmozart\Console\Api\Command\Command;
use Webmozart\Console\Api\IO\IO;
/**
* A command handler that does nothing.
* @since 1.0
* @author Bernhard Schussek <[email protected]>
class NullHandler
{
* {@inheritdoc}
public function handle(Args $args, IO $io, Command $command)
$args
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$io
$command
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.