Response.php
677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
declare(strict_types=1);
namespace ACP\Column\Comment;
use AC;
use ACP\Export;
use ACP\Filtering;
use ACP\Search;
use ACP\Sorting;
class Response extends AC\Column\Comment\Response
implements Filtering\Filterable, Sorting\Sortable, Export\Exportable, Search\Searchable
{
public function filtering()
{
return new Filtering\Model\Comment\Response($this);
}
public function sorting()
{
return new Sorting\Model\Comment\Response();
}
public function export()
{
return new Export\Model\Comment\Response();
}
public function search()
{
return new Search\Comparison\Comment\Post();
}
}