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\Adapter;
use Doctrine\Common\Collections\ArrayCollection;
use Nnx\DataGrid\Condition\Conditions;
use ArrayAccess;
use Traversable;
use Zend\Stdlib\InitializableInterface;
* Interface AdapterInterface
* @package Nnx\DataGrid\Adapter
interface AdapterInterface extends InitializableInterface
{
* @return array | ArrayCollection
public function getData();
* @return int
public function getCount();
* Устанавливает набор Conditions для выборки
* @param Conditions $conditions
* @return mixed
public function setConditions(Conditions $conditions);
* Возвращает набор Conditions для выборки
* @return Conditions
public function getConditions();
* Устанавливает опции для адаптера
* @param array | ArrayAccess | Traversable $options
* @return $this
public function setOptions($options);
* Возвращает опции адаптера
* @return array | ArrayAccess | Traversable
public function getOptions();
}
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.