food_server/vendor/yansongda/artful/src/Contract/PluginInterface.php

14 lines
213 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace Yansongda\Artful\Contract;
use Closure;
use Yansongda\Artful\Rocket;
interface PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket;
}