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

Commit 73bb516

Browse files
Change @type back to @var
1 parent 9931895 commit 73bb516

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/Controllers/LogViewerController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class LogViewerController extends Controller
3838
/**
3939
* The number of entries per page.
4040
*
41-
* @type int
41+
* @var int
4242
*/
4343
protected $perPage;
4444

src/Log/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Data
3131
/**
3232
* The cached log levels.
3333
*
34-
* @type string[]
34+
* @var string[]
3535
*/
3636
protected $levels;
3737

src/Log/Factory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ class Factory
2828
/**
2929
* The filesystem instance.
3030
*
31-
* @type \GrahamCampbell\LogViewer\Log\Filesystem
31+
* @var \GrahamCampbell\LogViewer\Log\Filesystem
3232
*/
3333
protected $filesystem;
3434

3535
/**
3636
* The log levels.
3737
*
38-
* @type array
38+
* @var array
3939
*/
4040
protected $levels;
4141

src/Log/Filesystem.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ class Filesystem
3131
/**
3232
* The files instance.
3333
*
34-
* @type \Illuminate\Filesystem\Filesystem
34+
* @var \Illuminate\Filesystem\Filesystem
3535
*/
3636
protected $files;
3737

3838
/**
3939
* The base storage path.
4040
*
41-
* @type string
41+
* @var string
4242
*/
4343
protected $path;
4444

src/Log/Log.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,28 @@ class Log
2828
/**
2929
* The raw log contents.
3030
*
31-
* @type string
31+
* @var string
3232
*/
3333
protected $raw;
3434

3535
/**
3636
* The available log levels.
3737
*
38-
* @type string[]
38+
* @var string[]
3939
*/
4040
protected $levels;
4141

4242
/**
4343
* The selected log level.
4444
*
45-
* @type string
45+
* @var string
4646
*/
4747
protected $level;
4848

4949
/**
5050
* The processed log data.
5151
*
52-
* @type array
52+
* @var array
5353
*/
5454
protected $data;
5555

src/LogViewer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@ class LogViewer
3232
/**
3333
* The factory instance.
3434
*
35-
* @type \GrahamCampbell\LogViewer\Log\Factory
35+
* @var \GrahamCampbell\LogViewer\Log\Factory
3636
*/
3737
protected $factory;
3838

3939
/**
4040
* The filesystem instance.
4141
*
42-
* @type \GrahamCampbell\LogViewer\Log\Filesystem
42+
* @var \GrahamCampbell\LogViewer\Log\Filesystem
4343
*/
4444
protected $filesystem;
4545

4646
/**
4747
* The data instance.
4848
*
49-
* @type \GrahamCampbell\LogViewer\Log\Data
49+
* @var \GrahamCampbell\LogViewer\Log\Data
5050
*/
5151
protected $data;
5252

src/LogViewerServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class LogViewerServiceProvider extends ServiceProvider
3030
/**
3131
* Indicates if loading of the provider is deferred.
3232
*
33-
* @type bool
33+
* @var bool
3434
*/
3535
protected $defer = false;
3636

0 commit comments

Comments
 (0)