Skip to content

Commit 4ca0113

Browse files
author
Martin Brecht-Precht
committed
Fixed inheritance problems.
1 parent fa2639b commit 4ca0113

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/ApiException/Base/BaseException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
namespace CommonException\ApiException\Base;
44

5+
use CommonException\Base;
6+
57
/**
68
* Class BaseException
79
*
810
* @package CommonException\ApiException\Base
911
*/
10-
abstract class BaseException
12+
abstract class BaseException extends Base\BaseException
1113
{
1214

1315
}

src/Base/BaseException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CommonException;
3+
namespace CommonException\Base;
44

55
/**
66
* Class BaseException

src/IoException/Base/BaseException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
namespace CommonException\IoException\Base;
44

5+
use CommonException\Base;
6+
57
/**
68
* Class BaseException
79
*
810
* @package CommonException\IoException\Base
911
*/
10-
abstract class BaseException
12+
abstract class BaseException extends Base\BaseException
1113
{
1214

1315
}

0 commit comments

Comments
 (0)