for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BitrixToolkit\BitrixEntityMapper\Annotation\Property;
abstract class AbstractPropertyAnnotation implements PropertyAnnotationInterface
{
protected $code;
protected $type;
protected $multiple;
protected $primaryKey = false;
protected $entity;
protected $name;
/**
* @return string
*/
public function getCode()
return $this->code;
}
public function getType()
return $this->type;
* @return bool
public function isMultiple()
return $this->multiple;
public function getName()
return $this->name;
public function isPrimaryKey()
return $this->primaryKey;
public function getEntity()
return $this->entity;