Skip to content

Commit f24cbcf

Browse files
authored
fix silly mistake in trader config.m4 (#973)
2 parents e0c6908 + 76a07c3 commit f24cbcf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace SPC\builder\extension;
6+
7+
use SPC\builder\Extension;
8+
use SPC\store\FileSystem;
9+
use SPC\util\CustomExt;
10+
11+
#[CustomExt('trader')]
12+
class trader extends Extension
13+
{
14+
public function patchBeforeBuildconf(): bool
15+
{
16+
FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/ext/trader/config.m4', 'PHP_TA', 'PHP_TRADER');
17+
return true;
18+
}
19+
}

0 commit comments

Comments
 (0)