for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Psi\Component\ContentType\Standard\View;
use Psi\Component\ContentType\View\ViewInterface;
class UrlView implements ViewInterface
{
private $value;
public function __construct($value, string $tag = null, bool $raw = false)
$tag
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$raw
$this->value = $value;
}
public function getUrl()
return $this->value;
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.