Skip to content

Commit

Permalink
Interfaces\Exception\Handler - Add Throwable to use statement
Browse files Browse the repository at this point in the history
  • Loading branch information
cbornhoft committed Sep 1, 2020
1 parent 4f63c5a commit e078352
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Interfaces/Exception/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Envms\Osseus\Interfaces\Exception;

use Throwable;

/**
* Interface Handler
*
Expand All @@ -11,7 +13,7 @@
interface Handler
{
/**
* @param \Throwable $e
* @param Throwable $e
*/
public static function get(\Throwable $e);
public static function get(Throwable $e);
}

0 comments on commit e078352

Please sign in to comment.