Update to laravel 7

This commit is contained in:
KodeStar
2022-03-10 11:54:29 +00:00
parent 61a5a1a8b0
commit f9a19fce91
7170 changed files with 274189 additions and 283773 deletions

View File

@@ -27,20 +27,16 @@ interface DebugLoggerInterface
* timestamp, message, priority, and priorityName.
* It can also have an optional context key containing an array.
*
* @param Request|null $request The request to get logs for
*
* @return array An array of logs
* @return array
*/
public function getLogs(/* Request $request = null */);
public function getLogs(Request $request = null);
/**
* Returns the number of errors.
*
* @param Request|null $request The request to count logs for
*
* @return int The number of errors
* @return int
*/
public function countErrors(/* Request $request = null */);
public function countErrors(Request $request = null);
/**
* Removes all log records.