Skip to content
This repository was archived by the owner on Nov 18, 2018. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Label305/Bugsnag-CakePHP
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.1
Choose a base ref
...
head repository: Label305/Bugsnag-CakePHP
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 2 files changed
  • 4 contributors

Commits on Jan 14, 2015

  1. Copy the full SHA
    ca5ccae View commit details

Commits on Jan 16, 2015

  1. Merge pull request #1 from mhcommunication/fix-composer

    Add composer/installers to composer.json
    tscheepers committed Jan 16, 2015
    Copy the full SHA
    1d4f443 View commit details

Commits on Apr 13, 2016

  1. Copy the full SHA
    1344101 View commit details

Commits on Jun 1, 2016

  1. Merge pull request #3 from mickeyschwab/master

    Remove Exception typehint for php 7 compatibility
    JBlaak committed Jun 1, 2016
    Copy the full SHA
    dec6085 View commit details
Showing with 2 additions and 1 deletion.
  1. +1 −1 Lib/BugsnagErrorHandler.php
  2. +1 −0 composer.json
2 changes: 1 addition & 1 deletion Lib/BugsnagErrorHandler.php
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ public static function handleError($code, $description, $file = null, $line = nu
return parent::handleError($code, $description, $file, $line, $context);
}

public static function handleException(Exception $exception)
public static function handleException($exception)
{
static::getBugsnag()->exceptionHandler($exception);
return parent::handleException($exception);
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
}
],
"require": {
"composer/installers": "~1.0",
"bugsnag/bugsnag": "2.*"
}
}