zZzzZ.
home2
/
zrzvbdry
/
public_html
/
wp-content
/
plugins
/
copy-delete-posts
/
analyst
/
src
/
Contracts
New Folder
Editing: RequestContract.php
Save
Cancel
<?php namespace Analyst\Contracts; use Analyst\ApiResponse; interface RequestContract { /** * Cast request data to array * * @return array */ public function toArray(); /** * Execute the request * @param RequestorContract $requestor * @return ApiResponse */ public function execute(RequestorContract $requestor); }