Skip to content

Commit 3a3a7cf

Browse files
committed
revert "make exception constructors internal"
reverts commit efdaa70
1 parent 3c92cd9 commit 3a3a7cf

File tree

4 files changed

+0
-20
lines changed

4 files changed

+0
-20
lines changed

src/Exceptions/Resolver/CyclicReferenceException.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44

55
final class CyclicReferenceException extends RangeException
66
{
7-
/**
8-
* @internal
9-
*/
107
public function __construct()
118
{
129
parent::__construct('Placeable contains cyclic reference.');

src/Exceptions/Resolver/NullPatternException.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44

55
final class NullPatternException extends ResolverException
66
{
7-
/**
8-
* @internal
9-
*/
107
public function __construct()
118
{
129
parent::__construct('Null pattern can not be formatted.');

src/Exceptions/Resolver/ReferenceException.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,4 @@
44

55
final class ReferenceException extends ResolverException
66
{
7-
/**
8-
* @internal
9-
*/
10-
public function __construct(string $message)
11-
{
12-
parent::__construct($message);
13-
}
147
}

src/Exceptions/Resolver/TypeException.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,4 @@
44

55
final class TypeException extends ResolverException
66
{
7-
/**
8-
* @internal
9-
*/
10-
public function __construct(string $message)
11-
{
12-
parent::__construct($message);
13-
}
147
}

0 commit comments

Comments
 (0)