Skip to content

1.1.0

Compare
Choose a tag to compare
@d47081 d47081 released this 25 Apr 11:57
· 7 commits to main since this release

Implemented optional Server response returned by custom handler

$server->start(
    function (
        string $request,
        string $connect
    ): ?string
    {
        printf(
            'connection: %s request: %s',
            $connect,
            $request
        );

        return null; // null|string response
    }
);

Full Changelog: 1.0.0...1.1.0