Files
Smart-Farm/vendor/swoole/ide-helper/src/StubGenerators/Swoole.php
2025-12-22 14:34:25 +08:00

25 lines
417 B
PHP

<?php
namespace Swoole\IDEHelper\StubGenerators;
use Swoole\IDEHelper\AbstractStubGenerator;
use Swoole\IDEHelper\Constant;
/**
* Class Swoole
*
* @package Swoole\IDEHelper\StubGenerators
*/
class Swoole extends AbstractStubGenerator
{
/**
* @inheritDoc
*/
protected function init(): AbstractStubGenerator
{
$this->extension = Constant::EXT_SWOOLE;
return $this;
}
}