ClearByPrefixInterface.php 236 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace Laminas\Cache\Storage; interface ClearByPrefixInterface { /** * Remove items matching given prefix * * @param string $prefix * @return bool */ public function clearByPrefix($prefix); }