Fix docs to reflect extension configuration: change 'kernel.file' to 'kernel.path'

This commit is contained in:
Marijus Kilmanas
2019-03-21 18:34:17 +02:00
committed by Kamil Kokot
parent 47ecdcc9a0
commit f91d4e3ccd

View File

@@ -12,7 +12,7 @@ default:
bootstrap: ~ bootstrap: ~
kernel: kernel:
class: ~ class: ~
file: ~ path: ~
environment: ~ environment: ~
debug: ~ debug: ~
``` ```
@@ -30,7 +30,7 @@ default:
If you do not pass any, it would look for either `App\Kernel` (Symfony 4) or `AppKernel` (Symfony 3). If you do not pass any, it would look for either `App\Kernel` (Symfony 4) or `AppKernel` (Symfony 3).
If none are found, an exception would be thrown and you would be required to specify it explicitly. If none are found, an exception would be thrown and you would be required to specify it explicitly.
* **`kernel.file`**: * **`kernel.path`**:
It is a path to the file containing the application kernel class. You might want to set it if your kernel is not It is a path to the file containing the application kernel class. You might want to set it if your kernel is not
autoloaded by Composer's autoloaded. autoloaded by Composer's autoloaded.