Skip to content

Commit

Permalink
update route interface (remove implicit nullable type)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkdotcom committed Sep 9, 2024
1 parent ea54194 commit a427d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Debug/Route/RouteInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ public function appendsHeaders();
* Process log collectively (alerts, summary, log...)
* likely implemented as a subscriber for the Debug::EVENT_OUTPUT event
*
* @param Event $event Event instance
* @param Event|null $event Event instance
*
* @return mixed
*/
public function processLogEntries(Event $event);
public function processLogEntries($event = null);

/**
* Process log entry
Expand Down

0 comments on commit a427d54

Please sign in to comment.