for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jarvis\Skill\DependencyInjection;
/**
* @author Eric Chau <[email protected]>
*/
class Reference
{
* @var string
private $identifier;
public function __construct(string $identifier)
$this->identifier = $identifier;
}
* @codeCoverageIgnore
public function identifier(): string
return $this->identifier;
public function __toString(): string