[HttpKernel] Fix inheritdocs

This commit is contained in:
Roland Franssen 2018-08-28 18:06:40 +02:00 committed by Fabien Potencier
parent 411e0c5d66
commit b04ef43d22
3 changed files with 13 additions and 24 deletions

View File

@ -18,5 +18,8 @@ namespace Symfony\Component\DependencyInjection;
*/
interface ContainerAwareInterface
{
/**
* Sets the container.
*/
public function setContainer(ContainerInterface $container = null);
}

View File

@ -35,23 +35,21 @@ abstract class Bundle implements BundleInterface
protected $path;
/**
* Boots the Bundle.
* {@inheritdoc}
*/
public function boot()
{
}
/**
* Shutdowns the Bundle.
* {@inheritdoc}
*/
public function shutdown()
{
}
/**
* Builds the bundle.
*
* It is only ever called once when the cache is empty.
* {@inheritdoc}
*
* This method can be overridden to register compilation passes,
* other extensions, ...
@ -61,9 +59,7 @@ abstract class Bundle implements BundleInterface
}
/**
* Sets the container.
*
* @param ContainerInterface|null $container A ContainerInterface instance or null
* {@inheritdoc}
*/
public function setContainer(ContainerInterface $container = null)
{
@ -71,9 +67,7 @@ abstract class Bundle implements BundleInterface
}
/**
* Returns the bundle's container extension.
*
* @return ExtensionInterface|null The container extension
* {@inheritdoc}
*
* @throws \LogicException
*/
@ -110,9 +104,7 @@ abstract class Bundle implements BundleInterface
}
/**
* Gets the Bundle namespace.
*
* @return string The Bundle namespace
* {@inheritdoc}
*/
public function getNamespace()
{
@ -122,9 +114,7 @@ abstract class Bundle implements BundleInterface
}
/**
* Gets the Bundle directory path.
*
* @return string The Bundle absolute path
* {@inheritdoc}
*/
public function getPath()
{
@ -137,18 +127,14 @@ abstract class Bundle implements BundleInterface
}
/**
* Returns the bundle parent name.
*
* @return string|null The Bundle parent name it overrides or null if no parent
* {@inheritdoc}
*/
public function getParent()
{
}
/**
* Returns the bundle name (the class short name).
*
* @return string The Bundle name
* {@inheritdoc}
*/
final public function getName()
{

View File

@ -112,7 +112,7 @@ abstract class Kernel implements KernelInterface, TerminableInterface
}
/**
* Boots the current kernel.
* {@inheritdoc}
*/
public function boot()
{