for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mouf\Mvc\Splash\Fixtures;
use Psr\Http\Message\RequestInterface;
use Mouf\Mvc\Splash\Annotations\URL;
class TestController
{
/**
* @URL("/myurl")
*
* @param RequestInterface $request
* @param string $compulsory
* @param int $id
*/
public function myAction(RequestInterface $request, $compulsory, $id = null)
$request
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$compulsory
$id
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.