Strategy.php 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php namespace ACP\Editing; interface Strategy { public function user_can_edit_item( int $id ): bool; public function user_can_edit(): bool; public function get_query_request_handler(): RequestHandler; }