| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 4 | abstract class AbstractDataTables implements \WebServCo\Framework\Interfaces\DataTablesInterface |
||
| 5 | { |
||
| 6 | abstract protected function getData(Request $request); |
||
| 7 | abstract protected function getRecordsFiltered(); |
||
| 8 | abstract protected function getRecordsTotal(); |
||
| 9 | |||
| 10 | public function getResponse(Request $request) |
||
| 20 |