Merge pull request #7942 from MichaelJJames/patch-6

Missing a semicolon in the caching docs
This commit is contained in:
Robbie Averill 2018-03-18 20:32:52 +13:00 committed by GitHub
commit 3826e61482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ This factory allows us you to globally define an adapter for all cache instances
```php
use Psr\SimpleCache\CacheInterface
use Psr\SimpleCache\CacheInterface;
use SilverStripe\Core\Injector\Injector;
$cache = Injector::inst()->get(CacheInterface::class . '.myCache');