1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

gen_stub: remove some misplaced spaces

This commit is contained in:
Daniel Scherzer
2024-10-07 19:38:11 -07:00
committed by Máté Kocsis
parent 69ff948d39
commit 8e40bb689e

View File

@@ -957,7 +957,7 @@ class PropertyName implements VariableLikeName {
public function getDeclarationName(): string
{
return $this->property;
return $this->property;
}
}
@@ -2568,7 +2568,7 @@ class ConstInfo extends VariableLike
return $termElement;
}
public function getPredefinedConstantEntry(DOMDocument $doc, int $indentationLevel): DOMElement {
public function getPredefinedConstantEntry(DOMDocument $doc, int $indentationLevel): DOMElement {
$indentation = str_repeat(" ", $indentationLevel);
$entryElement = $doc->createElement("entry");
@@ -5076,7 +5076,7 @@ function findEquivalentFuncInfo(array $generatedFuncInfos, FuncInfo $funcInfo):
function generateCodeWithConditions(
iterable $infos, string $separator, Closure $codeGenerator, ?string $parentCond = null): string {
$code = "";
// For combining the conditional blocks of the infos with the same condition
$openCondition = null;
foreach ($infos as $info) {