Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. $this->container
  4. ->get('event_dispatcher')
  5. ->addListener('kernel.exception', function(GetResponseForExceptionEvent $event)
  6. {
  7. if($event->getException() instanceof \PHPUnit_Framework_ExpectationFailedException) {
  8. $event->stopPropagation();
  9. }
  10. }, 255);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement