8000 [DependencyInjection] fixed PHPDoc · Dahipster/symfony@b333379 · GitHub
[go: up one dir, main page]

Skip to content

Commit b333379

Browse files
committed
[DependencyInjection] fixed PHPDoc
1 parent 150d3b4 commit b333379

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

src/Symfony/Components/DependencyInjection/Loader/IniFileLoader.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222
*/
2323
class IniFileLoader extends FileLoader
2424
{
25+
/**
26+
* Loads a resource.
27+
*
28+
* @param mixed $resource The resource path
29+
*
30+
* @return BuilderConfiguration A BuilderConfiguration instance
31+
*/
2532
public function load($files)
2633
{
2734
if (!is_array($files))

src/Symfony/Components/DependencyInjection/Loader/XmlFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class XmlFileLoader extends FileLoader
3030
*
3131
* @param array $files An array of XML files
3232
*
33-
* @return array An array of definitions and parameters
33+
* @return BuilderConfiguration A BuilderConfiguration instance
3434
*/
3535
public function load($files)
3636
{

src/Symfony/Components/DependencyInjection/Loader/YamlFileLoader.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
class YamlFileLoader extends FileLoader
3030
{
3131
/**
32-
* Loads an array of XML files.
32+
* Loads an array of Yaml files.
3333
*
34-
* @param array $files An array of XML files
34+
* @param array $files An array of Yaml files
3535
*
36-
* @return array An array of definitions and parameters
36+
* @return BuilderConfiguration A BuilderConfiguration instance
3737
*/
3838
public function load($files)
3939
{

0 commit comments

Comments
 (0)
0