Skip to content

Commit

Permalink
Merge pull request #116 from zer0pants/patch-1
Browse files Browse the repository at this point in the history
Relax type hint constraint for PHP 7 compatible exception handling
  • Loading branch information
enov committed Feb 3, 2016
2 parents 35d56c5 + e594e75 commit 303e2f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/Kohana/Minion/Exception.php
Expand Up @@ -14,10 +14,10 @@ abstract class Kohana_Minion_Exception extends Kohana_Exception {
* Inline exception handler, displays the error message,
* source of the exception, and the stack trace of the error.
*
* @param Exception $e
* @param mixed $e
* @return bool
*/
public static function handler(Exception $e)
public static function handler($e)
{
try
{
Expand Down

0 comments on commit 303e2f2

Please sign in to comment.