for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/**
* Created by Ruslan Molodyko.
* Date: 10.09.2016
* Time: 17:48
*/
namespace samsonframework\container\definition\analyzer\annotation;
use Doctrine\Common\Annotations\AnnotationReader;
* Class AbstractAnnotationAnalyzer
*
* @author Ruslan Molodyko <[email protected]>
class AbstractAnnotationAnalyzer
{
/** @var AnnotationReader */
protected $reader;
* AbstractAnnotationAnalyzer constructor.
* @param AnnotationReader $annotationReader
public function __construct(AnnotationReader $annotationReader)
$this->reader = $annotationReader;
}