Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class ServiceConsoleTransport extends Transport |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * Execution result |
||
25 | * |
||
26 | * @var mixed |
||
27 | */ |
||
28 | public static $result; |
||
29 | |||
30 | /** |
||
31 | * Method creates parameters fetcher |
||
32 | * |
||
33 | * @return RequestParamsInterface paremeters fetcher |
||
34 | */ |
||
35 | public function createFetcher(): RequestParamsInterface |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * Method runs router |
||
42 | */ |
||
43 | public function run(): void |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * Method creates session |
||
50 | * |
||
51 | * @param string $token |
||
52 | * session token |
||
53 | */ |
||
54 | public function createSession(string $token): string |
||
59 |