minor #26469 Make KernelInterface docblock more fit for bundle-less environment (ostrolucky)

This PR was merged into the 4.0 branch.

Discussion
----------

Make KernelInterface docblock more fit for bundle-less environment

| Q             | A
| ------------- | ---
| Branch?       | 4.0
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #26457
| License       | MIT
| Doc PR        | -

Commits
-------

e8df759f21 Make KernelInterface docblock more fit for bundle-less environment
This commit is contained in:
Fabien Potencier 2018-03-10 17:01:28 -06:00
commit 9f4459fe65

View File

@ -18,7 +18,7 @@ use Symfony\Component\Config\Loader\LoaderInterface;
/**
* The Kernel is the heart of the Symfony system.
*
* It manages an environment made of bundles.
* It manages an environment made of application kernel and bundles.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
@ -67,7 +67,7 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
public function getBundle($name);
/**
* Returns the file path for a given resource.
* Returns the file path for a given bundle resource.
*
* A Resource can be a file or a directory.
*