for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DoS\TaggingBundle\Model;
use DoS\ResourceBundle\Model\OriginatorTrait;
/**
* @author liverbool <[email protected]>
*/
class Tagging implements TaggingInterface
{
use OriginatorTrait;
* @var int
protected $id;
* @var TagInterface
protected $tag;
* {@inheritdoc}
public function getId()
return $this->id;
}
public function getTag()
return $this->tag;
public function setTag(TagInterface $tag = null)
$this->tag = $tag;