Update 05_Middlewares.md

Add missing semicolon.
This commit is contained in:
DouG 2017-11-20 13:10:37 +13:00 committed by GitHub
parent 9760c95bc0
commit e8c12793b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ will deliberately return a different response, e.g. an error response or a redir
**mysite/code/CustomMiddleware.php**
```php
use SilverStripe\Control\Middleware\HTTPMiddleware
use SilverStripe\Control\Middleware\HTTPMiddleware;
use SilverStripe\Control\HTTPRequest;
class CustomMiddleware implements HTTPMiddleware