Skip to content

Commit 0ec27dd

Browse files
committed
Fix failing build due to missing public modifiers on interface
1 parent d921cc5 commit 0ec27dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Sentry/SentryBundle/EventListener/SentryExceptionListenerInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ interface SentryExceptionListenerInterface
1818
*
1919
* @param GetResponseEvent $event
2020
*/
21-
function onKernelRequest(GetResponseEvent $event);
21+
public function onKernelRequest(GetResponseEvent $event);
2222

2323
/**
2424
* When an exception occurs as part of a web request, this method will be
2525
* triggered for capturing the error.
2626
*
2727
* @param GetResponseForExceptionEvent $event
2828
*/
29-
function onKernelException(GetResponseForExceptionEvent $event);
29+
public function onKernelException(GetResponseForExceptionEvent $event);
3030

3131
/**
3232
* When an exception occurs on the command line, this method will be
3333
* triggered for capturing the error.
3434
*
3535
* @param ConsoleExceptionEvent $event
3636
*/
37-
function onConsoleException(ConsoleExceptionEvent $event);
37+
public function onConsoleException(ConsoleExceptionEvent $event);
3838

3939
}

0 commit comments

Comments
 (0)