Skip to content
This repository was archived by the owner on Jan 18, 2018. It is now read-only.

Commit c5b9902

Browse files
Minor fixes
1 parent f9dd95c commit c5b9902

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/Controllers/LogViewerController.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ public function getDelete($sapi, $date)
103103
/**
104104
* Show the log viewing page.
105105
*
106-
* @param string $sapi
107-
* @param string $date
108-
* @param string $level
106+
* @param string $sapi
107+
* @param string $date
108+
* @param string|null $level
109109
*
110110
* @return \Illuminate\Http\Response
111111
*/
@@ -138,9 +138,9 @@ public function getShow($sapi, $date, $level = null)
138138
/**
139139
* Show the log contents.
140140
*
141-
* @param string $sapi
142-
* @param string $date
143-
* @param string $level
141+
* @param string $sapi
142+
* @param string $date
143+
* @param string|null $level
144144
*
145145
* @return \Illuminate\Http\Response
146146
*/

src/LogViewerServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function register()
7070
*/
7171
protected function registerLogData()
7272
{
73-
$this->app->bindShared('logviewer.data', function ($app) {
73+
$this->app->bindShared('logviewer.data', function () {
7474
return new Log\Data();
7575
});
7676

0 commit comments

Comments
 (0)