QueryRows.php 279 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace ACP\Editing\Response; use AC\Response\Json; class QueryRows extends Json { public function __construct( array $ids, $rows_per_iteration ) { $this->set_parameter( 'ids', $ids ) ->set_parameter( 'rows_per_iteration', (int) $rows_per_iteration ); } }