Clean KernelInterface docblocks

- Fixed questionable grammar
- Added missing periods to make it consistent
This commit is contained in:
Sam Ward 2014-03-24 08:32:55 -07:00 committed by Fabien Potencier
parent bbaa839a82
commit e850b38464

View File

@ -27,7 +27,7 @@ use Symfony\Component\Config\Loader\LoaderInterface;
interface KernelInterface extends HttpKernelInterface, \Serializable
{
/**
* Returns an array of bundles to registers.
* Returns an array of bundles to register.
*
* @return BundleInterface[] An array of bundle instances.
*
@ -36,7 +36,7 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
public function registerBundles();
/**
* Loads the container configuration
* Loads the container configuration.
*
* @param LoaderInterface $loader A LoaderInterface instance
*
@ -125,7 +125,7 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
public function locateResource($name, $dir = null, $first = true);
/**
* Gets the name of the kernel
* Gets the name of the kernel.
*
* @return string The kernel name
*