for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ocsp\Asn1;
/**
* Handy trait for classes that implements TaggableElement.
*/
trait TaggableElementTrait
{
* The applied tag (if any).
*
* @var \Ocsp\Asn1\Tag|null
private $tag;
* {@inheritdoc}
* @see \Ocsp\Asn1\TaggableElement::getTag()
public function getTag()
return $this->tag;
}
* @see \Ocsp\Asn1\TaggableElement::setTag()
public function setTag(Tag $value = null)
$this->tag = $value;
return $this;