for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @company MTE Telecom, Ltd.
* @author Roman Malashin <[email protected]>
*/
namespace Nnx\DataGrid\Entity;
use Doctrine\ORM\Mapping\Column;
* Trait NestedSetTrait
* @package Nnx\DataGrid\Entity
trait NestedSetTrait
{
* @var int
*
* @Column(name="lft", type="integer", nullable=true)
protected $left;
* @Column(name="rgt", type="integer", nullable=true)
protected $right;
* @Column(name="level", type="integer", nullable=true)
protected $level;
* @return int
public function getLeft()
return $this->left;
}
* @param int $left
* @return $this
public function setLeft($left)
$this->left = $left;
return $this;
public function getRight()
return $this->right;
* @param int $right
public function setRight($right)
$this->right = $right;
public function getLevel()
return $this->level;
* @param int $level
public function setLevel($level)
$this->level = $level;
This check marks files that end in a newline character, i.e. an empy line.
This check marks files that end in a newline character, i.e. an empy line.