Skip to content

Commit

Permalink
Merge pull request #23 from crimsonronin/master
Browse files Browse the repository at this point in the history
Hotfix: Generic Exception
  • Loading branch information
crimsonronin committed Dec 30, 2014
2 parents b0b7b2d + bf2efaa commit 0a4f192
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@ language: php
php:
- 5.4
- 5.5
- 5.6

matrix:
allow_failures:
- php: 5.5
- php: 5.6

services:
- mongodb

env:
- secure: j6HrKTI0NnVQLwjG/Nhtd7+hVhHXFqfdYLleez8CIGPKHJ2RQGAoAqv1ftDCbGmLjcPpz9+RH32wE5xr8kgB9zws8wK2LP6UAjlA1O58gUJU9KDX4aPLJN2jtsasqzIoG5yITNbd46+uo6Ewj9BNt+yg69ZIe+vborXmnLZSnvC58LDE2TIT7XCns+onqcA0iQU5WO5Un7PV+hPVtWfAzyvcYkdhOxEMkFS5B7T+BeJwkDzZF4KU+cJm2nKGgaQYqJ+lcZHxB0krYmappzVMNrn6p+dBRcxx8CK5JrZCsvwfyPjoO+hlpgcMouh7PmZVvKYSVUtKaWjrbmi53RPWhQ==
before_script:
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
Expand Down
2 changes: 1 addition & 1 deletion src/Zoop/ShardModule/Controller/ExceptionSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function accessControlEvent(AccessControlEventArgs $eventArgs)

public function genericException($eventName)
{
$exception = new Exception\GenericShardExceptionExceptionn;
$exception = new Exception\GenericShardException;
$exception->setEventName($eventName);
$this->flushExceptions[] = $exception;
}
Expand Down

0 comments on commit 0a4f192

Please sign in to comment.