1 | <?php |
||
17 | class Feedback |
||
18 | { |
||
19 | /** |
||
20 | * Logger. |
||
21 | * |
||
22 | * @var LoggerInterface |
||
23 | */ |
||
24 | protected $logger; |
||
25 | |||
26 | /** |
||
27 | * Client. |
||
28 | * |
||
29 | * @var GuzzleHttpClientInterface |
||
30 | */ |
||
31 | protected $client; |
||
32 | |||
33 | /** |
||
34 | * Remote. |
||
35 | * |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $remote; |
||
39 | |||
40 | /** |
||
41 | * Constructor. |
||
42 | */ |
||
43 | public function __construct(GuzzleHttpClientInterface $client, LoggerInterface $logger) |
||
48 | |||
49 | /** |
||
50 | * Handle. |
||
51 | */ |
||
52 | public function handle(): bool |
||
78 | } |
||
79 |