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