lms/vendor/inertiajs/inertia-laravel/src/Ssr/Gateway.php
2025-12-15 12:26:23 +01:00

14 lines
225 B
PHP

<?php
namespace Inertia\Ssr;
interface Gateway
{
/**
* Dispatch the Inertia page to the SSR engine.
*
* @param array<string, mixed> $page
*/
public function dispatch(array $page): ?Response;
}