1 | <?php |
||
29 | class BootstrapRequestResponseObjects |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * @type LegacyRequestInterface $legacy_request |
||
34 | */ |
||
35 | protected $legacy_request; |
||
36 | |||
37 | /** |
||
38 | * @type LoaderInterface $loader |
||
39 | */ |
||
40 | protected $loader; |
||
41 | |||
42 | /** |
||
43 | * @var RequestInterface $request |
||
44 | */ |
||
45 | protected $request; |
||
46 | |||
47 | /** |
||
48 | * @var ResponseInterface $response |
||
49 | */ |
||
50 | protected $response; |
||
51 | |||
52 | |||
53 | /** |
||
54 | * BootstrapRequestResponseObjects constructor. |
||
55 | * |
||
56 | * @param LoaderInterface $loader |
||
57 | */ |
||
58 | public function __construct(LoaderInterface $loader) |
||
62 | |||
63 | |||
64 | /** |
||
65 | * @return void |
||
66 | */ |
||
67 | public function buildRequestResponse() |
||
73 | |||
74 | |||
75 | /** |
||
76 | * @return void |
||
77 | * @throws InvalidArgumentException |
||
78 | */ |
||
79 | public function shareRequestResponse() |
||
86 | |||
87 | |||
88 | /** |
||
89 | * @return void |
||
90 | * @throws InvalidArgumentException |
||
91 | * @throws EE_Error |
||
92 | */ |
||
93 | public function setupLegacyRequest() |
||
108 | } |
||
109 | |||
110 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.