Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11a6021

Browse files
committed
Fixing small items thanks to comments from Stof
1 parent ee5bd54 commit 11a6021

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/Symfony/Bundle/FrameworkBundle/Kernel/ContainerBuilderAwareLoader.php

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,42 +41,40 @@ public function __construct(ContainerBuilder $builder, LoaderInterface $resource
4141
$this->resourceLoader = $resourceLoader;
4242
}
4343

44+
/**
45+
* @return ContainerBuilder
46+
*/
4447
public function getContainerBuilder()
4548
{
4649
return $this->containerBuilder;
4750
}
4851

49-
public function getResourceLoader()
50-
{
51-
return $this->resourceLoader;
52-
}
53-
5452
/**
55-
* @see LoaderInterface
53+
* @see {@inheritdoc}
5654
*/
5755
public function load($resource, $type = null)
5856
{
5957
return $this->resourceLoader->load($resource, $type);
6058
}
6159

6260
/**
63-
* @see LoaderInterface
61+
* @see {@inheritdoc}
6462
*/
6563
public function supports($resource, $type = null)
6664
{
6765
return $this->resourceLoader->supports($resource, $type);
6866
}
6967

7068
/**
71-
* @see LoaderInterface
69+
* @see {@inheritdoc}
7270
*/
7371
public function getResolver()
7472
{
7573
return $this->resourceLoader->getResolver();
7674
}
7775

7876
/**
79-
* @see LoaderInterface
77+
* @see {@inheritdoc}
8078
*/
8179
public function setResolver(LoaderResolverInterface $resolver)
8280
{

0 commit comments

Comments
 (0)