1 | <?php declare(strict_types=1); |
||
18 | final class AsyncClient implements AsyncClientInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var ClientInterface |
||
22 | */ |
||
23 | private $client; |
||
24 | |||
25 | /** |
||
26 | * @param ClientInterface $client |
||
27 | */ |
||
28 | 9 | private function __construct(ClientInterface $client) |
|
32 | |||
33 | /** |
||
34 | * Create a new AsyncClient based on the loop and other options pass. |
||
35 | * |
||
36 | * @param LoopInterface $loop |
||
37 | * @param string $token Instructions to fetch the token: https://blog.travis-ci.com/2013-01-28-token-token-token/ |
||
38 | * @param array $options |
||
39 | * @return AsyncClient |
||
40 | */ |
||
41 | 1 | public static function create( |
|
53 | |||
54 | public function hydrate(string $resource): CancellablePromiseInterface |
||
58 | |||
59 | public function extract(ResourceInterface $resource): CancellablePromiseInterface |
||
63 | |||
64 | /** |
||
65 | * Create an AsyncClient from a ApiClients\Foundation\ClientInterface. |
||
66 | * Be sure to pass in a client with the options from ApiSettings and the Async namespace suffix. |
||
67 | * |
||
68 | * @param ClientInterface $client |
||
69 | * @return AsyncClient |
||
70 | */ |
||
71 | 8 | public static function createFromClient(ClientInterface $client): self |
|
75 | |||
76 | /** |
||
77 | * {@inheritdoc} |
||
78 | */ |
||
79 | 1 | public function repository(string $repository): CancellablePromiseInterface |
|
83 | |||
84 | /** |
||
85 | * Warning this a intensive operation as it has to make a call for each hook |
||
86 | * to turn it into a Repository!!! |
||
87 | * |
||
88 | * Take a look at examples/repositories-async.php on how to limit the amount of |
||
89 | * concurrent requests. |
||
90 | * |
||
91 | * {@inheritdoc} |
||
92 | */ |
||
93 | public function repositories(callable $filter = null): Observable |
||
109 | |||
110 | /** |
||
111 | * {@inheritdoc} |
||
112 | */ |
||
113 | 1 | public function user(): PromiseInterface |
|
117 | |||
118 | /** |
||
119 | * {@inheritdoc} |
||
120 | */ |
||
121 | 1 | public function sshKey(int $id): PromiseInterface |
|
125 | |||
126 | /** |
||
127 | * @return Observable |
||
128 | */ |
||
129 | 1 | public function hooks(): Observable |
|
135 | |||
136 | /** |
||
137 | * {@inheritdoc} |
||
138 | */ |
||
139 | 1 | public function accounts(): Observable |
|
145 | |||
146 | /** |
||
147 | * {@inheritdoc} |
||
148 | */ |
||
149 | 1 | public function broadcasts(): Observable |
|
155 | } |
||
156 |
Let’s assume that you have a directory layout like this:
and let’s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: