for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DoctrineDatatable;
/**
* Class ServerSideDatatable.
*
* @author Mathieu Petrini <[email protected]>
*/
class ClientSideDatatable extends Datatable
{
* PUBLIC METHODS.
* @param mixed[] $filters
* @return mixed[]
* @throws Exception\ResolveColumnNotHandle
* @throws Exception\UnfilterableColumn
* @throws Exception\WhereColumnNotHandle
public function get(array $filters): array
$this->createQueryResult();
$this->createFoundationQuery($filters);
return array(
'data' => $this->data($filters),
);
}