[PLUGINS] Removed direct call of EndCache events on all plugins, as it is now handled by the library

This commit is contained in:
Miguel Dantas
2019-08-13 03:02:05 +01:00
committed by Diogo Peralta Cordeiro
parent d8d7abee9f
commit d7c2c98a02
4 changed files with 0 additions and 16 deletions

View File

@@ -76,7 +76,6 @@ class DiskCachePlugin extends Plugin
}
}
Event::handle('EndCacheGet', array($key, &$value));
return false;
}
@@ -137,9 +136,6 @@ class DiskCachePlugin extends Plugin
return false;
}
Event::handle('EndCacheSet', array($key, $value, $flag,
$expiry));
return false;
}
@@ -159,7 +155,6 @@ class DiskCachePlugin extends Plugin
unlink($filename);
}
Event::handle('EndCacheDelete', array($key));
return false;
}