Skip to content

Commit ba8322e

Browse files
committed
[DependencyInjection] Format base exception classes consistently
1 parent 6924e63 commit ba8322e

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/Symfony/Component/DependencyInjection/Exception/ExceptionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\DependencyInjection\Exception;
1313

1414
/**
15-
* ExceptionInterface
15+
* Base ExceptionInterface for Dependency Injection component.
1616
*
1717
* @author Fabien Potencier <[email protected]>
1818
* @author Bulat Shakirzyanov <[email protected]>

src/Symfony/Component/DependencyInjection/Exception/InvalidArgumentException.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@
1111

1212
namespace Symfony\Component\DependencyInjection\Exception;
1313

14-
use \InvalidArgumentException as BaseInvalidArgumentException;
15-
1614
/**
17-
* InvalidArgumentException
15+
* Base InvalidArgumentException for Dependency Injection component.
1816
*
1917
* @author Bulat Shakirzyanov <[email protected]>
2018
*/
21-
class InvalidArgumentException extends BaseInvalidArgumentException implements ExceptionInterface
19+
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
2220
{
2321
}

src/Symfony/Component/DependencyInjection/Exception/RuntimeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\DependencyInjection\Exception;
1313

1414
/**
15-
* Base RuntimeException for Dependency Injection Component.
15+
* Base RuntimeException for Dependency Injection component.
1616
*
1717
* @author Johannes M. Schmitt <[email protected]>
1818
*/

0 commit comments

Comments
 (0)