5
5
use PHPPM \Symfony \StrongerNativeSessionStorage ;
6
6
use PHPPM \Utils ;
7
7
use Symfony \Component \HttpFoundation \Request ;
8
+ use Symfony \Component \Config \Resource \FileResource ;
8
9
use function PHPPM \register_file ;
9
10
10
11
/**
@@ -87,6 +88,38 @@ public function getApplication()
87
88
$ app ->booted = true ;
88
89
}, $ app );
89
90
91
+ if ($ this ->debug ) {
92
+ Utils::bindAndCall (function () use ($ app ) {
93
+ $ container = $ app ->container ;
94
+
95
+ $ containerClassName = substr (strrchr (get_class ($ app ->container ), "\\" ), 1 );
96
+ $ metaName = $ containerClassName . '.php.meta ' ;
97
+
98
+ Utils::bindAndCall (function () use ($ container ) {
99
+ $ container ->publicContainerDir = $ container ->containerDir ;
100
+ }, $ container );
101
+
102
+ if ($ container ->publicContainerDir === null ) {
103
+ return ;
104
+ }
105
+
106
+ $ metaContent = @file_get_contents ($ app ->container ->publicContainerDir . '/../ ' . $ metaName );
107
+
108
+ // Cannot read the Metadata, returning
109
+ if ($ metaContent === false ) {
110
+ return ;
111
+ }
112
+
113
+ $ containerMetadata = unserialize ($ metaContent );
114
+
115
+ foreach ($ containerMetadata as $ entry ) {
116
+ if ($ entry instanceof FileResource) {
117
+ register_file ($ entry ->__toString ());
118
+ }
119
+ }
120
+ }, $ app );
121
+ }
122
+
90
123
if ($ trustedProxies = getenv ('TRUSTED_PROXIES ' )) {
91
124
Request::setTrustedProxies (explode (', ' , $ trustedProxies ), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST );
92
125
}
@@ -97,7 +130,7 @@ public function getApplication()
97
130
98
131
return $ app ;
99
132
}
100
-
133
+
101
134
/**
102
135
* Returns the vendor directory containing autoload.php
103
136
*
0 commit comments