Skip to content

Commit

Permalink
Changed folder for autoloader exceptions (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
danijelgalic committed Nov 15, 2024
1 parent 1109c49 commit 2926b1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/support/lowlevel/firehub.SplAutoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ final class SplAutoload {
* filename extensions .inc and .php.
* </p>
*
* @throws \FireHub\Core\Support\LowLevel\Exceptions\ClassNotFoundException When the class is not found and there
* are no other autoloaders registered.
* @throws \FireHub\Core\Support\LowLevel\Exceptions\Autoload\ClassNotFoundException When the class is not found
* and there are no other autoloaders registered.
*
* @return void
*/
Expand Down Expand Up @@ -107,7 +107,7 @@ public static function extensions (?string $file_extensions = null):string {
* Whether to prepend the autoloader on the stack instead of appending it.
* </p>
*
* @throws \FireHub\Core\Support\LowLevel\Exceptions\AutoloadRegisterException If failed to register a callback
* @throws \FireHub\Core\Support\LowLevel\Exceptions\Autoload\AutoloadRegisterException If failed to register a callback
* function as an autoloader.
*
* @return true True if autoloader was registered.
Expand All @@ -131,8 +131,8 @@ public static function register (?callable $callback = null, bool $prepend = fal
* The autoload function that will be unregistered.
* </p>
*
* @throws \FireHub\Core\Support\LowLevel\Exceptions\AutoloadRegisterException If failed to unregister autoloader
* implementation.
* @throws \FireHub\Core\Support\LowLevel\Exceptions\Autoload\AutoloadRegisterException If failed to unregister
* autoloader implementation.
*
* @return true True if autoloader was unregistered.
*/
Expand Down

0 comments on commit 2926b1b

Please sign in to comment.