2025-10-16 21:07:43 +08:00

12 lines
121 B
PHP
Executable File

<?php
namespace think\composer;
class Promise
{
public function then($callable)
{
$callable();
}
}