File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 7.0.1
2
+ #### _ "Gold is getting some rust !"_
3
+ ##### 22 june 2018
4
+ - __ Global__
5
+ - Updated php constraint to be more reliable over the years (@Geolim4 )
6
+ - __ Core__
7
+ - Fixed possible notice in some contexts (@Geolim4 )
8
+ - __ Drivers__
9
+ - IOException in ` Files ` driver: Preventive hotfix for #614 , thanks to @hriziya (@Geolim4 )
10
+ - __ Misc__
11
+ - Fixed typo in README & code sample mistakes (@Geolim4 )
12
+ - Updated examples as per #612 (@Geolim4 )
13
+ - Fixed wrong code in template issues (@Geolim4 )
14
+ - Updated Github bytes (@Geolim4 )
15
+ - Fixing broken badges (@Geolim4 )
16
+
1
17
## 7.0.0
2
18
#### _ "We found gold !"_
3
19
##### 27 may 2018
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ $your_product_data = [
304
304
/* ... */
305
305
];
306
306
307
- if ($CachedString->isHit()) {
307
+ if (! $CachedString->isHit()) {
308
308
$CachedString->set($your_product_data)->expiresAfter(5);//in seconds, also accepts Datetime
309
309
$InstanceCache->save($CachedString); // Save the cache item just like you do with doctrine and entities
310
310
You can’t perform that action at this time.
0 commit comments