mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-18 05:07:32 +08:00
12 lines
121 B
PHP
Executable File
12 lines
121 B
PHP
Executable File
<?php
|
|
|
|
namespace think\composer;
|
|
|
|
class Promise
|
|
{
|
|
public function then($callable)
|
|
{
|
|
$callable();
|
|
}
|
|
}
|