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\Options;
use Zend\Stdlib\AbstractOptions;
* Class ModuleOptions
* @package Nnx\DataGrid\Options
class ModuleOptions extends AbstractOptions
{
* Массив настроек таблиц
* @var array
protected $grids;
* @var string
protected $doctrineEntityManager;
$doctrineEntityManager
20
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.
* Возвращает массив настроек таблиц
* @return array
public function getGrids()
return $this->grids;
}
* Устанавливает настроики таблиц
* @param array $grids
* @return $this
public function setGrids($grids)
$this->grids = $grids;
return $this;
* @return string
public function getDoctrineEntityManager()
return $this->doctrineEntityManager;
* @param string $doctrineEntityManager
public function setDoctrineEntityManager($doctrineEntityManager)
$this->doctrineEntityManager = $doctrineEntityManager;
This check marks files that end in a newline character, i.e. an empy line.
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.