mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-29 18:27:44 +08:00
20 lines
400 B
PHP
Executable File
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();
|