Skip to content

Commit 69afdd5

Browse files
committed
Fixed #620
1 parent 330c3f8 commit 69afdd5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/migration/MigratingFromV6ToV7.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ This object will contain fluent setters allowing you to make use of chained sett
9292
Despite the fact that this is a bad practice, this object which implements ArrayAccess interface
9393
will allow you to treat the object as an array for primitive variable accesses:
9494
```php
95-
use \phpFastCache\Config\Config;
95+
use Phpfastcache\Config\Config;
9696

9797
$configArray = [];
9898
$config = new Config();
@@ -108,7 +108,7 @@ $cacheInstace = CacheManager::getInstance('Files', new Config([
108108
#### For non-global option you MUST use the specific Config object provided for each drivers
109109
```php
110110
// The recommanded way is to use an alias to not confuse yourself
111-
use \phpFastCache\Drivers\Files\Config as FilesConfig;
111+
use Phpfastcache\Drivers\Files\Config as FilesConfig;
112112

113113
$config = new FilesConfig();
114114
$config->setPath('/an/absolute/path');

0 commit comments

Comments
 (0)