. */ namespace SP\Tests\Stubs; use SP\Domain\Core\PhpExtensionCheckerService; /** * Class PhpExtensionCheckerStub */ class PhpExtensionCheckerStub implements PhpExtensionCheckerService { /** * @inheritDoc */ public function checkIsAvailable(string $extension, bool $exception = false): bool { return true; } /** * @inheritDoc */ public function checkMandatory(): void { // TODO: Implement checkMandatory() method. } /** * @inheritDoc */ public function getMissing(): array { return []; } public function checkCurl(bool $exception = false): bool { return true; } public function checkLdap(bool $exception = false): bool { return true; } public function checkPhar(bool $exception = false): bool { return true; } public function checkGd(bool $exception = false): bool { return true; } }