Skip to content

Commit

Permalink
Fixed code style for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kalizi committed Apr 24, 2020
1 parent b54885d commit 9582aaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Support/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace PragmaRX\Tracker\Support\Exceptions;

use Throwable;
use Illuminate\Contracts\Debug\ExceptionHandler;
use PragmaRX\Tracker\Tracker;
use Throwable;

class Handler implements ExceptionHandler
{
Expand All @@ -27,9 +27,9 @@ public function __construct(Tracker $tracker, $illuminateHandler = null)

private function initializeHandlers()
{
$this->originalExceptionHandler = set_exception_handler(array($this, 'handleThrowable'));
$this->originalExceptionHandler = set_exception_handler([$this, 'handleThrowable']);

$this->originalErrorHandler = set_error_handler(array($this, 'handleError'));
$this->originalErrorHandler = set_error_handler([$this, 'handleError']);
}

public function handleThrowable(Throwable $throwable)
Expand Down

0 comments on commit 9582aaa

Please sign in to comment.