for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Novaway\Component\OpenGraph\Annotation;
/**
* @Annotation
* @Target({"CLASS", "PROPERTY", "METHOD"})
*/
class Node extends GraphNode
{
* @Required
* @var string
public $namespace;
public $tag;
/** @var string */
public $value;
public function __construct(array $values = [])
parent::__construct($values['namespace'], $values['tag'], $values);
}