This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
use Illuminate\Console\Concerns\CallsCommands; | |
use Illuminate\Support\Facades\Http; | |
use Laravel\Forge\Forge; | |
use Laravel\Forge\Resources\Daemon; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace Helhum\SitePackage\Cache\Frontend; | |
use TYPO3\CMS\Core\Cache\Backend\BackendInterface; | |
use TYPO3\CMS\Core\Cache\Frontend\VariableFrontend; | |
use TYPO3\CMS\Core\Core\Environment; | |
use TYPO3\CMS\Core\Http\ServerRequestFactory; | |
class CacheWarmingFrontend extends VariableFrontend |