1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
||
20 | abstract class EE_Middleware implements EEI_Request_Decorator { |
||
21 | |||
22 | /** |
||
23 | * @access protected |
||
24 | * @type EEI_Request_Decorator $_request_stack |
||
25 | */ |
||
26 | protected $_request_stack = null; |
||
27 | |||
28 | /** |
||
29 | * @access protected |
||
30 | * @type EE_Request $_request |
||
31 | */ |
||
32 | protected $_request; |
||
33 | |||
34 | /** |
||
35 | * @access protected |
||
36 | * @type EE_Response $_response |
||
37 | */ |
||
38 | protected $_response; |
||
39 | |||
40 | |||
41 | |||
42 | /** |
||
43 | * @access public |
||
44 | * @param \EEI_Request_Decorator $request_stack |
||
45 | */ |
||
46 | public function __construct( EEI_Request_Decorator $request_stack ) { |
||
49 | |||
50 | |||
51 | |||
52 | /** |
||
53 | * process_request_stack |
||
54 | * |
||
55 | * @access protected |
||
56 | * @param EE_Request $request |
||
57 | * @param EE_Response $response |
||
58 | * @return EE_Response |
||
59 | */ |
||
60 | protected function process_request_stack( EE_Request $request, EE_Response $response ) { |
||
70 | |||
71 | |||
72 | |||
73 | } |
||
74 | |||
78 | // Location: /core/middleware/EE_Middleware.core.php |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.