Skip to content

Commit 40d62f0

Browse files
committed
Removed final and extended stdClass.
Signed-off-by: Joshua Parker <[email protected]>
1 parent 547ca64 commit 40d62f0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Codefy.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
namespace Codefy\Framework;
66

7-
final class Codefy
7+
use stdClass;
8+
9+
class Codefy extends stdClass
810
{
911
/**
1012
* Application instance.
1113
*
12-
* @var Application $php
14+
* @var ?Application $php
1315
*/
14-
public static Application $PHP;
16+
public static ?Application $PHP = null;
1517
}

0 commit comments

Comments
 (0)