Response.php 677 Bytes
<?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();
    }

}