We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09c18e commit 8c8cb70Copy full SHA for 8c8cb70
src/SPC/builder/Extension.php
@@ -4,6 +4,7 @@
4
5
namespace SPC\builder;
6
7
+use SPC\builder\unix\UnixBuilderBase;
8
use SPC\exception\EnvironmentException;
9
use SPC\exception\SPCException;
10
use SPC\exception\ValidationException;
@@ -454,7 +455,9 @@ public function buildUnixShared(): void
454
455
if (!file_exists($soFile)) {
456
throw new ValidationException("extension {$this->getName()} build failed: {$soFile} not found", validation_module: "Extension {$this->getName()} build");
457
}
- $this->builder->deployBinary($soFile, $soFile, false);
458
+ /** @var UnixBuilderBase $builder */
459
+ $builder = $this->builder;
460
+ $builder->deployBinary($soFile, $soFile, false);
461
462
463
/**
0 commit comments