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

12 lines
121 B
PHP
Raw Normal View History

2024-07-06 18:16:22 +08:00
<?php
namespace think\composer;
class Promise
{
public function then($callable)
{
$callable();
}
}