Remove PHP 7.4 and PHP 8.0 support #193
build.yaml
on: pull_request
Matrix: Code Coverage
Matrix: Coding Standards
Matrix: Dependency Analysis
Matrix: Mutation tests
Matrix: Static Code Analysis
Matrix: Unit tests
Annotations
10 warnings
Mutation tests (8.3, highest):
src/Generator/ValueBasedFingerprintGenerator.php#L16
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
private readonly string $hashAlgorithm;
public function __construct(string $hashAlgorithm = 'md5')
{
- Assert::oneOf($hashAlgorithm, hash_algos());
+
$this->hashAlgorithm = $hashAlgorithm;
}
public function generate(TagInterface $tag, string $renderedValue) : string
|
Mutation tests (8.3, highest):
src/Renderer/AttributesAwareRendererTrait.php#L11
Escaped Mutant for Mutator "PublicVisibility":
--- Original
+++ New
@@ @@
use Setono\TagBag\Tag\AttributesAwareInterface;
trait AttributesAwareRendererTrait
{
- public function renderAttributes(AttributesAwareInterface $tag) : string
+ protected function renderAttributes(AttributesAwareInterface $tag) : string
{
$attributes = '';
foreach ($tag->getAttributes() as $attribute => $value) {
|
Mutation tests (8.3, highest):
src/Renderer/ContentAwareRenderer.php#L23
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
}
public function render(TagInterface $tag) : string
{
- Assert::true($this->supports($tag));
+
return $tag->getContent();
}
}
|
Mutation tests (8.3, highest):
src/Renderer/ElementRenderer.php#L28
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
*/
public function render(TagInterface $tag) : string
{
- Assert::true($this->supports($tag));
+
if ($tag->hasClosingElement()) {
return sprintf('<%s%s>%s</%s>', $tag->getElement(), $this->renderAttributes($tag), $tag->getContent(), $tag->getElement());
}
|
Mutation tests (8.3, highest):
src/Tag/AttributesAwareTrait.php#L14
Escaped Mutant for Mutator "PublicVisibility":
--- Original
+++ New
@@ @@
{
/** @var array<string, string|null> */
protected array $attributes = [];
- public function hasAttribute(string $attribute) : bool
+ protected function hasAttribute(string $attribute) : bool
{
return array_key_exists($attribute, $this->attributes);
}
|
Mutation tests (8.3, highest):
src/Tag/AttributesAwareTrait.php#L36
Escaped Mutant for Mutator "PublicVisibility":
--- Original
+++ New
@@ @@
{
return $this->attributes;
}
- public function withAttribute(string $attribute, \Stringable|string|int|float $val = null) : static
+ protected function withAttribute(string $attribute, \Stringable|string|int|float $val = null) : static
{
$obj = clone $this;
$obj->attributes[$attribute] = null === $val ? null : (string) $val;
|
Mutation tests (8.3, highest):
src/Tag/AttributesAwareTrait.php#L39
Escaped Mutant for Mutator "CastString":
--- Original
+++ New
@@ @@
public function withAttribute(string $attribute, \Stringable|string|int|float $val = null) : static
{
$obj = clone $this;
- $obj->attributes[$attribute] = null === $val ? null : (string) $val;
+ $obj->attributes[$attribute] = null === $val ? null : $val;
return $obj;
}
}
|
Mutation tests (8.3, highest):
src/Tag/ElementTag.php#L25
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
{
return new static($element, $content, true);
}
- public static function createWithoutContent(string $element, bool $hasClosingElement = true) : static
+ public static function createWithoutContent(string $element, bool $hasClosingElement = false) : static
{
return new static($element, '', $hasClosingElement);
}
|
Mutation tests (8.3, highest):
src/Tag/ElementTag.php#L45
Escaped Mutant for Mutator "PublicVisibility":
--- Original
+++ New
@@ @@
{
return $this->closingElement;
}
- public function withClosingElement(bool $closingElement) : static
+ protected function withClosingElement(bool $closingElement) : static
{
return $this->with('closingElement', $closingElement);
}
|
Mutation tests (8.3, highest):
src/Tag/LinkTag.php#L11
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
{
public static function create(string $rel = null, string $href = null) : self
{
- $tag = parent::createWithoutContent('link', false);
+ $tag = parent::createWithoutContent('link', true);
if (null !== $rel) {
$tag = $tag->withRel($rel);
}
|