mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 21:34:53 +08:00
20 lines
362 B
PHP
20 lines
362 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Package\Extension;
|
||
|
|
|
||
|
|
use StaticPHP\Attribute\Package\CustomPhpConfigureArg;
|
||
|
|
use StaticPHP\Attribute\Package\Extension;
|
||
|
|
|
||
|
|
#[Extension('mbregex')]
|
||
|
|
class mbregex
|
||
|
|
{
|
||
|
|
#[CustomPhpConfigureArg('Linux')]
|
||
|
|
#[CustomPhpConfigureArg('Darwin')]
|
||
|
|
public function getUnixConfigureArg(): string
|
||
|
|
{
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
}
|