Files
pgserver3.0/pgserver/vendor/topthink/think-installer/src/Promise.php
annnj-company 130c1026c4 first commit
2026-04-17 18:29:53 +08:00

12 lines
121 B
PHP

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