mirror of
https://github.com/php/frankenphp.git
synced 2026-03-24 00:52:11 +01:00
9 lines
225 B
PHP
9 lines
225 B
PHP
<?php
|
|
|
|
require_once __DIR__.'/_executor.php';
|
|
|
|
return function () {
|
|
echo "update 1: " . mercure_publish('foo', 'bar', true, 'myid', 'mytype', 10) . PHP_EOL;
|
|
echo "update 2: " . mercure_publish(['baz', 'bar']) . PHP_EOL;
|
|
};
|