for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Hyde\Foundation;
use LaravelZero\Framework\Kernel;
use Hyde\Foundation\Services\LoadYamlConfiguration;
class ConsoleKernel extends Kernel
{
/**
* Get the bootstrap classes for the application.
*/
protected function bootstrappers(): array
$bootstrappers = $this->bootstrappers;
array_splice($bootstrappers, 5, 0, LoadYamlConfiguration::class);
return $bootstrappers;
}