Skip to content

Commit 0a8aaf0

Browse files
authored
Update SourceCodeGeneratorInterface.php
1 parent 971416f commit 0a8aaf0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
<?php
2-
3-
interface SourceCodeGeneratorInterface
4-
{
2+
namespace Frdlweb\Contract\Autoload {
3+
if (!interface_exists(SourceCodeGeneratorInterface::class)) {
4+
interface SourceCodeGeneratorInterface
5+
{
56
public function file(string $className):string;
67
public function source(string $className):string;
78
public function bundle(array $classes):string;
9+
}
10+
}
811
}

0 commit comments

Comments
 (0)