mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-06 16:25:39 +08:00
12 lines
168 B
PHP
12 lines
168 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\builder\extension;
|
||
|
|
|
||
|
|
use SPC\builder\Extension;
|
||
|
|
use SPC\util\DynamicExt;
|
||
|
|
|
||
|
|
#[DynamicExt]
|
||
|
|
class xdebug extends Extension {}
|