Skip to content

Commit

Permalink
Fixed PSR-4 namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Helldar committed Jul 15, 2020
1 parent 152ea9f commit 5455ef4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Next, add middleware in `$middlewareGroups > web` section in `app/Http/Kernel.ph

protected $middlewareGroups = [
'web' => [
Helldar\LastModified\CheckLastModified::class,
\Helldar\LastModified\Middlewares\CheckLastModified::class,
]
]
```
Expand Down
2 changes: 1 addition & 1 deletion src/Middlewares/CheckLastModified.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Helldar\LastModified;
namespace Helldar\LastModified\Middlewares;

use Closure;
use Helldar\LastModified\Services\Check;
Expand Down

0 comments on commit 5455ef4

Please sign in to comment.