mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-05 07:45:39 +08:00
23 lines
338 B
PHP
23 lines
338 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\extension;
|
|
|
|
use SPC\builder\Extension;
|
|
use SPC\util\CustomExt;
|
|
|
|
#[CustomExt('mbregex')]
|
|
class mbregex extends Extension
|
|
{
|
|
public function getDistName(): string
|
|
{
|
|
return 'mbstring';
|
|
}
|
|
|
|
public function getConfigureArg(): string
|
|
{
|
|
return '';
|
|
}
|
|
}
|