for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: harry
* Date: 2/12/18
* Time: 4:10 PM
*/
namespace PhpBootstrap;
use League\Container\Container;
use PhpBootstrap\Console\HelloWorld;
use Symfony\Component\Console\Application;
class Tasks
{
* @param Application $application
* https://symfony.com/doc/current/console.html
final public static function register(Application $application, Container $container)
$container
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$application->add(new HelloWorld());
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.