for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ParaTest\Parser;
abstract class ParsedObject
{
/**
* @var string
*/
protected $docBlock;
protected $name;
public function __construct($doc, $name)
$this->docBlock = $doc;
$this->name = $name;
}
* Get the name of a parsed object
*
* @return string
public function getName()
return $this->name;
* Get the doc block comments of a parsed object
public function getDocBlock()
return $this->docBlock;
* Returns whether or not the parsed object
* has an annotation matching the name and value
* if provided
* @param string $anno
* @param mixed $value
* @return bool
public function hasAnnotation($anno, $value = null)
$pattern = sprintf(
'/@%s%s/',
$anno,
!is_null($value) ? "[\s]+$value" : '\b'
);
return (bool) preg_match($pattern, $this->docBlock);