Fixed typos

This commit is contained in:
Graham Campbell
2015-07-06 19:22:49 +01:00
parent 9b43b42e27
commit 408141dd8b
2 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
namespace CachetHQ\Cachet\Exceptions;
use GrahamCampbell\Exceptions\ExceptionHandler;
use Symfony\Component\HttpKernel\Exception\HttpNotFoundException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class Handler extends ExceptionHandler
{
@@ -22,6 +22,6 @@ class Handler extends ExceptionHandler
* @var string[]
*/
protected $dontReport = [
HttpNotFoundException::class,
NotFoundHttpException::class,
];
}