for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Ray.Aop package
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*/
namespace Ray\Aop;
final class AnnotatedMatcher extends BuiltinMatcher
{
public $annotation;
public function __construct($matcherName, array $arguments)
parent::__construct($matcherName, $arguments);
$this->annotation = $arguments[0];
}