eZ\Publish\Core\MVC\Symfony\Cache\Http\InstantCachePurger::purgeAll PHP Method

purgeAll() public method

public purgeAll ( )
    public function purgeAll()
    {
        $this->purgeClient->purgeAll();
    }

Usage Example

 public function testPurgeAll()
 {
     $this->purgeClient->expects($this->once())->method('purgeAll');
     $purger = new InstantCachePurger($this->purgeClient, $this->contentService, $this->eventDispatcher);
     $purger->purgeAll();
 }
All Usage Examples Of eZ\Publish\Core\MVC\Symfony\Cache\Http\InstantCachePurger::purgeAll