Skip to content

Commit 76c268f

Browse files
jagrooproshangautam
authored andcommitted
fix (readme) : add missing semicolon and namespace in readme example
1 parent b2ac014 commit 76c268f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,11 @@ This package assumes that you have a good understanding of [Laravel's Task Sched
5050
`Laravel Totem`'s dashboard is inspired by `Laravel Horizon`. Just like Horizon you can configure authentication to `Totem`'s dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.
5151

5252
```
53+
use Studio\Totem\Totem;
54+
5355
Totem::auth(function($request) {
5456
// return true / false . For e.g.
55-
return Auth::check()
57+
return Auth::check();
5658
});
5759
```
5860

@@ -96,4 +98,4 @@ Bug reports, feature requests, and pull requests can be submitted by following o
9698

9799
This software is released under the [MIT](LICENSE) License.
98100

99-
© 2017 Roshan Gautam, All rights reserved.
101+
© 2017 Roshan Gautam, All rights reserved.

0 commit comments

Comments
 (0)