You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/migration/MigratingFromV8ToV9.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Because the V9 is **relatively** not backward compatible with the V8, here's a g
4
4
As of the V9 the mandatory minimum php version has been increased to 8.0+.
5
5
Once released, the php version 8.1 will be unit-tested
6
6
7
-
### Embedded autoload has been removed (and therefore, embedded dependencies)
7
+
### Embedded autoload has been removed (and therefore, embedded dependencies too)
8
8
Use [Composer](https://getcomposer.org/doc/03-cli.md#require) to include Phpfastcache in your project
9
9
10
10
### Removed magics methods from CacheManager `CacheManager::DriverName()`
@@ -24,9 +24,9 @@ Finally, the config name you try to set MUST be recognized or an exception will
24
24
Use `\Phpfastcache\CacheContract` instead. See [Wiki](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV9%CB%96%5D-Cache-contract).
25
25
26
26
### Removed `Couchbase` driver (SDK 2 support dropped)
27
-
It is now replaced by `Couchbasev3` driver (SDK 3), the configuration options are all the same plus `scopeName` and `collectionName` that are now configurable.
27
+
It is now replaced by `Couchbasev3` driver (SDK 3), the configuration options remains the same plus `scopeName` and `collectionName` that are now configurable.
28
28
29
-
### Updated EventManager instances
29
+
### Updated EventManager callback parameters
30
30
- Updated argument type #2 (`$items`) of `onCacheSaveMultipleItems()` event from `ExtendedCacheItemInterface[]` to `EventReferenceParameter($items)`
31
31
- Updated argument type #2 (`$items`) of `onCacheCommitItem()` event from `ExtendedCacheItemInterface[]` to `EventReferenceParameter($items)`
32
32
- Updated argument type #2 (`$value`) of `onCacheItemSet()` event from `mixed` to `EventReferenceParameter(mixed $value)`
0 commit comments