for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kunstmaan\NodeBundle\ValueObject;
class PageTab
{
/**
* @var string
*/
private $internalName;
private $tabTitle;
private $formTypeClass;
* @var int|null
private $position;
* PageTab constructor.
*
* @param string $internalName
* @param string $tabTitle
* @param string $formTypeClass
* @param int|null $position
public function __construct($internalName, $tabTitle, $formTypeClass, $position = null)
$this->internalName = $internalName;
$this->tabTitle = $tabTitle;
$this->formTypeClass = $formTypeClass;
$this->position = $position;
}
* @return string
public function getInternalName()
return $this->internalName;
public function getTabTitle()
return $this->tabTitle;
public function getFormTypeClass()
return $this->formTypeClass;
* @return int|null
public function getPosition()
return $this->position;