File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+ declare (strict_types=1 );
3+
4+ namespace Lcobucci \ErrorHandling \Problem ;
5+
6+ use Throwable ;
7+
8+ interface Detailed extends Throwable
9+ {
10+ /**
11+ * @return array<string, mixed>
12+ */
13+ public function getExtraDetails (): array ;
14+ }
Original file line number Diff line number Diff line change 1+ <?php
2+ declare (strict_types=1 );
3+
4+ namespace Lcobucci \ErrorHandling \Problem ;
5+
6+ use Throwable ;
7+
8+ interface Titled extends Throwable
9+ {
10+ public function getTitle (): string ;
11+ }
Original file line number Diff line number Diff line change 1+ <?php
2+ declare (strict_types=1 );
3+
4+ namespace Lcobucci \ErrorHandling \Problem ;
5+
6+ use Throwable ;
7+
8+ interface Typed extends Throwable
9+ {
10+ public function getTypeUri (): string ;
11+ }
You can’t perform that action at this time.
0 commit comments