Files
tougao/vendor/topthink/think-installer/src/Promise.php
wangjinlei c1885928ff 20220406
2022-04-06 18:02:49 +08:00

12 lines
121 B
PHP

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