Response.php 608 Bytes
<?php

namespace ACP\Column\Comment;

use AC;
use ACP\Export;
use ACP\Filtering;
use ACP\Search;
use ACP\Sorting;

/**
 * @since 4.0
 */
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();
	}

}