k911/swoole-bundle

View on GitHub
src/Server/Runtime/BootableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace K911\Swoole\Server\Runtime;

interface BootableInterface
{
    /**
     * Used to provide or override configuration at runtime.
     *
     * This method will be called directly before starting Swoole server.
     */
    public function boot(array $runtimeConfiguration = []): void;
}