for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* File: PurgeGeneral.php
*
* @author Maciej Sławik <[email protected]>
* @copyright Copyright (C) 2019 Lizard Media (http://lizardmedia.pl)
*/
namespace LizardMedia\VarnishWarmer\Controller\Adminhtml\Purge;
use LizardMedia\VarnishWarmer\Console\Command\PurgeGeneralCommand;
use LizardMedia\VarnishWarmer\Controller\Adminhtml\Purge;
* Class PurgeGeneral
* @package LizardMedia\VarnishWarmer\Controller\Adminhtml\Purge
class PurgeGeneral extends Purge
{
* @return string
protected function getCliCommand(): string
return PurgeGeneralCommand::CLI_COMMAND;
}