SchoolPhysicalExamination/vendor/topthink/think-installer/src/Promise.php

12 lines
121 B
PHP

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