12 lines
121 B
PHP
12 lines
121 B
PHP
<?php
|
|
|
|
namespace think\composer;
|
|
|
|
class Promise
|
|
{
|
|
public function then($callable)
|
|
{
|
|
$callable();
|
|
}
|
|
}
|