for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleDIC\Dummy;
class Router
{
/**
* @var string
*/
private $route;
private $name;
* Router constructor.
*
* @param string $route
* @param string $name
public function __construct($route, $name)
$this->route = $route;
$this->name = $name;
}