Files
xo_kf/vendor/topthink/think-installer/src/Promise.php
2025-04-26 11:07:05 +08:00

12 lines
121 B
PHP

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