Skip to content

Bump shivammathur/setup-php from 2.30.4 to 2.30.5 #323

Bump shivammathur/setup-php from 2.30.4 to 2.30.5

Bump shivammathur/setup-php from 2.30.4 to 2.30.5 #323

Triggered via pull request June 4, 2024 07:04
Status Success
Total duration 3m 5s
Artifacts

php.yml

on: pull_request
Static code analysis
22s
Static code analysis
Rector
27s
Rector
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

27 warnings
Tests on PHP 8.2
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4.4.1/dist/codecov' failed with exit code 1
Tests on PHP 8.2: src/API/Geokoordinaten.php#L52
Escaped Mutant for Mutator "OneZeroFloat": @@ @@ $this->laengengrad = $laengengrad; return $this; } - public function __construct(float $breitengrad = 0.0, float $laengengrad = 0.0) + public function __construct(float $breitengrad = 1.0, float $laengengrad = 0.0) { $this->breitengrad = $breitengrad; $this->laengengrad = $laengengrad; } }
Tests on PHP 8.2: src/API/Geokoordinaten.php#L52
Escaped Mutant for Mutator "OneZeroFloat": @@ @@ $this->laengengrad = $laengengrad; return $this; } - public function __construct(float $breitengrad = 0.0, float $laengengrad = 0.0) + public function __construct(float $breitengrad = 0.0, float $laengengrad = 1.0) { $this->breitengrad = $breitengrad; $this->laengengrad = $laengengrad; } }
Tests on PHP 8.2: src/API/Master.php#L55
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->value = $value; return $this; } - public function __construct(bool $visible = false, ?string $value = null) + public function __construct(bool $visible = true, ?string $value = null) { $this->visible = $visible; $this->value = $value; } }
Tests on PHP 8.2: src/API/Nutzungsart.php#L93
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->waz = $waz; return $this; } - public function __construct(bool $wohnen = false, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) + public function __construct(bool $wohnen = false, bool $gewerbe = true, ?bool $anlage = null, ?bool $waz = null) { $this->wohnen = $wohnen; $this->gewerbe = $gewerbe;
Tests on PHP 8.2: src/API/Nutzungsart.php#L93
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->waz = $waz; return $this; } - public function __construct(bool $wohnen = false, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) + public function __construct(bool $wohnen = true, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) { $this->wohnen = $wohnen; $this->gewerbe = $gewerbe;
Tests on PHP 8.2: src/API/Vermarktungsart.php#L94
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->leasing = $leasing; return $this; } - public function __construct(bool $kauf = false, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) + public function __construct(bool $kauf = true, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) { $this->kauf = $kauf; $this->mietePacht = $mietePacht;
Tests on PHP 8.2: src/API/Vermarktungsart.php#L95
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->leasing = $leasing; return $this; } - public function __construct(bool $kauf = false, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) + public function __construct(bool $kauf = false, bool $mietePacht = true, ?bool $erbpacht = null, ?bool $leasing = null) { $this->kauf = $kauf; $this->mietePacht = $mietePacht;
Tests on PHP 8.2: src/Generator/ApiGenerator.php#L151
Escaped Mutant for Mutator "TrueValue": @@ @@ $xsdType = TypeUtil::extractTypeForPhp($extension->getBase()); } $propertyType = TypeUtil::getValidPhpType($xsdType); - $classProperty->setType($propertyType)->setNullable(true)->setValue(null)->addComment('@inline')->addComment('@type("' . TypeUtil::getTypeForSerializer($xsdType) . '")'); + $classProperty->setType($propertyType)->setNullable(false)->setValue(null)->addComment('@inline')->addComment('@type("' . TypeUtil::getTypeForSerializer($xsdType) . '")'); $namespace->addUse(Type::class)->addUse(Inline::class); CodeGenUtil::generateGetterAndSetter($classProperty, $class, true, !TypeUtil::isConstantsBasedProperty($classProperty)); }
Tests on PHP 8.1: src/API/Geokoordinaten.php#L52
Escaped Mutant for Mutator "OneZeroFloat": @@ @@ $this->laengengrad = $laengengrad; return $this; } - public function __construct(float $breitengrad = 0.0, float $laengengrad = 0.0) + public function __construct(float $breitengrad = 0.0, float $laengengrad = 1.0) { $this->breitengrad = $breitengrad; $this->laengengrad = $laengengrad; } }
Tests on PHP 8.1: src/API/Geokoordinaten.php#L52
Escaped Mutant for Mutator "OneZeroFloat": @@ @@ $this->laengengrad = $laengengrad; return $this; } - public function __construct(float $breitengrad = 0.0, float $laengengrad = 0.0) + public function __construct(float $breitengrad = 1.0, float $laengengrad = 0.0) { $this->breitengrad = $breitengrad; $this->laengengrad = $laengengrad; } }
Tests on PHP 8.1: src/API/Master.php#L55
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->value = $value; return $this; } - public function __construct(bool $visible = false, ?string $value = null) + public function __construct(bool $visible = true, ?string $value = null) { $this->visible = $visible; $this->value = $value; } }
Tests on PHP 8.1: src/API/Nutzungsart.php#L93
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->waz = $waz; return $this; } - public function __construct(bool $wohnen = false, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) + public function __construct(bool $wohnen = true, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) { $this->wohnen = $wohnen; $this->gewerbe = $gewerbe;
Tests on PHP 8.1: src/API/Nutzungsart.php#L93
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->waz = $waz; return $this; } - public function __construct(bool $wohnen = false, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) + public function __construct(bool $wohnen = false, bool $gewerbe = true, ?bool $anlage = null, ?bool $waz = null) { $this->wohnen = $wohnen; $this->gewerbe = $gewerbe;
Tests on PHP 8.1: src/API/Vermarktungsart.php#L94
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->leasing = $leasing; return $this; } - public function __construct(bool $kauf = false, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) + public function __construct(bool $kauf = true, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) { $this->kauf = $kauf; $this->mietePacht = $mietePacht;
Tests on PHP 8.1: src/API/Vermarktungsart.php#L95
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->leasing = $leasing; return $this; } - public function __construct(bool $kauf = false, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) + public function __construct(bool $kauf = false, bool $mietePacht = true, ?bool $erbpacht = null, ?bool $leasing = null) { $this->kauf = $kauf; $this->mietePacht = $mietePacht;
Tests on PHP 8.1: src/Generator/ApiGenerator.php#L215
Escaped Mutant for Mutator "TrueValue": @@ @@ $nullable = !$isArray && $property->getMin() === 0; // if the property type is an object, it should be nullable if ('\DateTime' === $phpType || str_starts_with($serializerType, TypeUtil::OPENIMMO_NAMESPACE)) { - $nullable = true; + $nullable = false; } $classProperty->setType($phpType)->setNullable($nullable); if ($nullable) {
Tests on PHP 8.1
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4.4.1/dist/codecov' failed with exit code 1
Tests on PHP 8.3: src/API/Geokoordinaten.php#L52
Escaped Mutant for Mutator "OneZeroFloat": @@ @@ $this->laengengrad = $laengengrad; return $this; } - public function __construct(float $breitengrad = 0.0, float $laengengrad = 0.0) + public function __construct(float $breitengrad = 1.0, float $laengengrad = 0.0) { $this->breitengrad = $breitengrad; $this->laengengrad = $laengengrad; } }
Tests on PHP 8.3: src/API/Geokoordinaten.php#L52
Escaped Mutant for Mutator "OneZeroFloat": @@ @@ $this->laengengrad = $laengengrad; return $this; } - public function __construct(float $breitengrad = 0.0, float $laengengrad = 0.0) + public function __construct(float $breitengrad = 0.0, float $laengengrad = 1.0) { $this->breitengrad = $breitengrad; $this->laengengrad = $laengengrad; } }
Tests on PHP 8.3: src/API/Master.php#L55
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->value = $value; return $this; } - public function __construct(bool $visible = false, ?string $value = null) + public function __construct(bool $visible = true, ?string $value = null) { $this->visible = $visible; $this->value = $value; } }
Tests on PHP 8.3: src/API/Nutzungsart.php#L93
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->waz = $waz; return $this; } - public function __construct(bool $wohnen = false, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) + public function __construct(bool $wohnen = false, bool $gewerbe = true, ?bool $anlage = null, ?bool $waz = null) { $this->wohnen = $wohnen; $this->gewerbe = $gewerbe;
Tests on PHP 8.3: src/API/Nutzungsart.php#L93
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->waz = $waz; return $this; } - public function __construct(bool $wohnen = false, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) + public function __construct(bool $wohnen = true, bool $gewerbe = false, ?bool $anlage = null, ?bool $waz = null) { $this->wohnen = $wohnen; $this->gewerbe = $gewerbe;
Tests on PHP 8.3: src/API/Vermarktungsart.php#L94
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->leasing = $leasing; return $this; } - public function __construct(bool $kauf = false, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) + public function __construct(bool $kauf = true, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) { $this->kauf = $kauf; $this->mietePacht = $mietePacht;
Tests on PHP 8.3: src/API/Vermarktungsart.php#L95
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->leasing = $leasing; return $this; } - public function __construct(bool $kauf = false, bool $mietePacht = false, ?bool $erbpacht = null, ?bool $leasing = null) + public function __construct(bool $kauf = false, bool $mietePacht = true, ?bool $erbpacht = null, ?bool $leasing = null) { $this->kauf = $kauf; $this->mietePacht = $mietePacht;
Tests on PHP 8.3: src/Generator/ApiGenerator.php#L248
Escaped Mutant for Mutator "InstanceOf_": @@ @@ private function getPhpPropertyTypeFromXsdElement($property): string { if ($property instanceof ElementRef) { - if ($property->getReferencedElement()->getType() instanceof SimpleType) { + if (true) { $propertyType = TypeUtil::extractTypeForPhp($property->getReferencedElement()->getType()); } else { $propertyType = TypeUtil::camelize($property->getReferencedElement()->getName());
Tests on PHP 8.3
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4.4.1/dist/codecov' failed with exit code 1