PATH:
home
/
lab2454c
/
am.elementalrock.com
/
wp-content
/
plugins
/
copy-delete-posts
/
analyst
/
src
/
Contracts
<?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); }
[-] RequestContract.php
[edit]
[+]
..
[-] AnalystContract.php
[edit]
[-] CacheContract.php
[edit]
[-] HttpClientContract.php
[edit]
[-] TrackerContract.php
[edit]
[-] RequestorContract.php
[edit]