for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Victoire\Bundle\ViewReferenceBundle\ViewReference;
class BusinessPageReference extends ViewReference
{
protected $entityId;
protected $entityNamespace;
protected $templateId;
protected $businessEntity;
/**
* @return mixed
*/
public function getEntityId()
return $this->entityId;
}
* @param mixed $entityId
public function setEntityId($entityId)
$this->entityId = $entityId;
* @deprecated
*
public function getEntityNamespace()
return $this->entityNamespace;
* @param mixed $entityNamespace
public function setEntityNamespace($entityNamespace)
$this->entityNamespace = $entityNamespace;
public function getTemplateId()
return $this->templateId;
* @param mixed $templateId
public function setTemplateId($templateId)
$this->templateId = $templateId;
public function getBusinessEntity()
return $this->businessEntity;
* @param mixed $businessEntity
public function setBusinessEntity($businessEntity)
$this->businessEntity = $businessEntity;