Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 825d213

Browse filesBrowse files
ro0NLfabpot
authored andcommitted
[HttpKernel] Fix inheritdocs
1 parent 00404ff commit 825d213
Copy full SHA for 825d213

File tree

Expand file treeCollapse file tree

2 files changed

+10
-24
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+10
-24
lines changed

‎Bundle/Bundle.php

Copy file name to clipboardExpand all lines: Bundle/Bundle.php
+9-23Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,21 @@ abstract class Bundle implements BundleInterface
3535
protected $path;
3636

3737
/**
38-
* Boots the Bundle.
38+
* {@inheritdoc}
3939
*/
4040
public function boot()
4141
{
4242
}
4343

4444
/**
45-
* Shutdowns the Bundle.
45+
* {@inheritdoc}
4646
*/
4747
public function shutdown()
4848
{
4949
}
5050

5151
/**
52-
* Builds the bundle.
53-
*
54-
* It is only ever called once when the cache is empty.
52+
* {@inheritdoc}
5553
*
5654
* This method can be overridden to register compilation passes,
5755
* other extensions, ...
@@ -61,19 +59,15 @@ public function build(ContainerBuilder $container)
6159
}
6260

6361
/**
64-
* Sets the container.
65-
*
66-
* @param ContainerInterface|null $container A ContainerInterface instance or null
62+
* {@inheritdoc}
6763
*/
6864
public function setContainer(ContainerInterface $container = null)
6965
{
7066
$this->container = $container;
7167
}
7268

7369
/**
74-
* Returns the bundle's container extension.
75-
*
76-
* @return ExtensionInterface|null The container extension
70+
* {@inheritdoc}
7771
*
7872
* @throws \LogicException
7973
*/
@@ -110,9 +104,7 @@ public function getContainerExtension()
110104
}
111105

112106
/**
113-
* Gets the Bundle namespace.
114-
*
115-
* @return string The Bundle namespace
107+
* {@inheritdoc}
116108
*/
117109
public function getNamespace()
118110
{
@@ -122,9 +114,7 @@ public function getNamespace()
122114
}
123115

124116
/**
125-
* Gets the Bundle directory path.
126-
*
127-
* @return string The Bundle absolute path
117+
* {@inheritdoc}
128118
*/
129119
public function getPath()
130120
{
@@ -137,18 +127,14 @@ public function getPath()
137127
}
138128

139129
/**
140-
* Returns the bundle parent name.
141-
*
142-
* @return string|null The Bundle parent name it overrides or null if no parent
130+
* {@inheritdoc}
143131
*/
144132
public function getParent()
145133
{
146134
}
147135

148136
/**
149-
* Returns the bundle name (the class short name).
150-
*
151-
* @return string The Bundle name
137+
* {@inheritdoc}
152138
*/
153139
final public function getName()
154140
{

‎Kernel.php

Copy file name to clipboardExpand all lines: Kernel.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function __clone()
112112
}
113113

114114
/**
115-
* Boots the current kernel.
115+
* {@inheritdoc}
116116
*/
117117
public function boot()
118118
{

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.