We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 117f244 commit ac25626Copy full SHA for ac25626
Bootstraps/Symfony.php
@@ -27,10 +27,6 @@ public function __construct($appenv)
27
*/
28
public function getApplication()
29
{
30
- if (file_exists('./app/AppKernel.php')) {
31
- require_once './app/AppKernel.php';
32
- }
33
-
34
$this->includeAutoload();
35
36
$app = new \AppKernel($this->appenv, false);
README.md
@@ -12,3 +12,12 @@ HttpKernel adapter for use of Symfony and Laravel frameworks with PHP-PM. See ht
12
13
composer require php-pm/httpkernel-adapter:dev-master
14
15
+> **Note**: Make sure your `AppKernel` is autoloaded in your `composer.json`:
16
+>
17
+> ```
18
+> {
19
+> "autoload": {
20
+> "classmap": ["app/AppKernel.php"]
21
+> }
22
23
0 commit comments