for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Novaway\Component\OpenGraph\Annotation;
use Doctrine\Common\Annotations\Annotation\Required;
/**
* @Annotation
* @Target({"CLASS"})
*/
class NamespaceNode
{
* @Required
* @var string
public $prefix;
public $uri;
public function __construct(array $values)
$this->prefix = $values['prefix'];
$this->uri = $values['uri'];
}