1 | <?php namespace Phabricator\Endpoints; |
||
18 | class BaseEndpoint { |
||
19 | |||
20 | /** |
||
21 | * @type \Phabricator\Client\ClientInterface |
||
22 | */ |
||
23 | protected $client; |
||
24 | |||
25 | /** |
||
26 | * Constructor |
||
27 | * Set the client in this class |
||
28 | * |
||
29 | * @param \Phabricator\Client\ClientInterface $client |
||
30 | */ |
||
31 | 3 | public function __construct(ClientInterface $client) { |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | * |
||
38 | * @codeCoverageIgnore |
||
39 | */ |
||
40 | public function defaultExecutor($requestUrl, $requestData) { |
||
43 | |||
44 | } |