Skip to content

Commit e011f61

Browse files
committed
replace fully qualified names in exceptions/ with imports #11
1 parent 327f801 commit e011f61

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

exceptions/SapLogicException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace phpsap\exceptions;
44

5+
use LogicException;
56
use phpsap\interfaces\exceptions\ISapException;
67

78
/**
@@ -15,6 +16,6 @@
1516
* @author Gregor J.
1617
* @license MIT
1718
*/
18-
class SapLogicException extends \LogicException implements ISapException
19+
class SapLogicException extends LogicException implements ISapException
1920
{
2021
}

exceptions/SapRuntimeException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace phpsap\exceptions;
44

55
use phpsap\interfaces\exceptions\ISapException;
6+
use RuntimeException;
67

78
/**
89
* Class phpsap\exceptions\SapRuntimeException
@@ -14,6 +15,6 @@
1415
* @author Gregor J.
1516
* @license MIT
1617
*/
17-
class SapRuntimeException extends \RuntimeException implements ISapException
18+
class SapRuntimeException extends RuntimeException implements ISapException
1819
{
1920
}

0 commit comments

Comments
 (0)