for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Hyde\Foundation\Providers;
use Hyde\Framework\Services\YamlConfigurationService;
use Illuminate\Support\ServiceProvider;
class ConfigurationServiceProvider extends ServiceProvider
{
/**
* Run any logic before the Hyde Service Provider is registered.
*/
public function initialize(): void
if (YamlConfigurationService::hasFile()) {
YamlConfigurationService::boot();
}
public function register(): void
//
public function boot(): void