Skip to content

Commit

Permalink
fix: add missing types to loader
Browse files Browse the repository at this point in the history
Signed-off-by: azjezz <azjezz@protonmail.com>
  • Loading branch information
azjezz committed Dec 9, 2022
1 parent 929fa6c commit e07ee89
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Psl/Internal/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ final class Loader
'Psl\\Network\\StreamSocketInterface' => 'Psl/Network/StreamSocketInterface.php',
'Psl\\Network\\ServerInterface' => 'Psl/Network/ServerInterface.php',
'Psl\\Network\\StreamServerInterface' => 'Psl/Network/StreamServerInterface.php',
'Psl\\Channel\\ChannelInterface' => 'Psl/Channel/ChannelInterface.php',
'Psl\\Channel\\SenderInterface' => 'Psl/Channel/SenderInterface.php',
'Psl\\Channel\\ReceiverInterface' => 'Psl/Channel/ReceiverInterface.php',
'Psl\\Channel\\Exception\\ExceptionInterface' => 'Psl/Channel/Exception/ExceptionInterface.php',
Expand Down Expand Up @@ -584,6 +585,7 @@ final class Loader
'Psl\\Collection\\MutableVector' => 'Psl/Collection/MutableVector.php',
'Psl\\Collection\\Map' => 'Psl/Collection/Map.php',
'Psl\\Collection\\MutableMap' => 'Psl/Collection/MutableMap.php',
'Psl\\Exception\\OverflowException' => 'Psl/Exception/OverflowException.php',
'Psl\\Exception\\InvalidArgumentException' => 'Psl/Exception/InvalidArgumentException.php',
'Psl\\Exception\\RuntimeException' => 'Psl/Exception/RuntimeException.php',
'Psl\\Exception\\InvariantViolationException' => 'Psl/Exception/InvariantViolationException.php',
Expand Down Expand Up @@ -629,6 +631,7 @@ final class Loader
'Psl\\Type\\Exception\\CoercionException' => 'Psl/Type/Exception/CoercionException.php',
'Psl\\Type\\Exception\\Exception' => 'Psl/Type/Exception/Exception.php',
'Psl\\Type\\Type' => 'Psl/Type/Type.php',
'Psl\\Json\\Exception\\ExceptionInterface' => 'Psl/Json/Exception/ExceptionInterface.php',
'Psl\\Json\\Exception\\DecodeException' => 'Psl/Json/Exception/DecodeException.php',
'Psl\\Json\\Exception\\EncodeException' => 'Psl/Json/Exception/EncodeException.php',
'Psl\\Hash\\Exception\\ExceptionInterface' => 'Psl/Hash/Exception/ExceptionInterface.php',
Expand Down Expand Up @@ -708,6 +711,7 @@ final class Loader
'Psl\\Network\\Exception\\InvalidArgumentException' => 'Psl/Network/Exception/InvalidArgumentException.php',
'Psl\\Network\\Address' => 'Psl/Network/Address.php',
'Psl\\Network\\SocketOptions' => 'Psl/Network/SocketOptions.php',
'Psl\\Network\\Internal\\AbstractStreamServer' => 'Psl/Network/Internal/AbstractStreamServer.php',
'Psl\\Network\\Internal\\Socket' => 'Psl/Network/Internal/Socket.php',
'Psl\\TCP\\ConnectOptions' => 'Psl/TCP/ConnectOptions.php',
'Psl\\TCP\\ServerOptions' => 'Psl/TCP/ServerOptions.php',
Expand Down

0 comments on commit e07ee89

Please sign in to comment.