Files
journal/vendor/topthink/think-installer/src/Promise.php
wangjinlei a9bdce100c 20220406
2022-04-06 18:24:31 +08:00

12 lines
121 B
PHP

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