hyperf/bin/generate-ide-helper
2021-06-20 10:18:28 +08:00

20 lines
400 B
PHP
Executable File

#!/usr/bin/env php
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
use Hyperf\IDEHelper\AnnotationGenerator;
require_once 'vendor/autoload.php';
$generate = new AnnotationGenerator();
$generate->generate();