chore(deps-dev): bump phpunit/phpunit from 11.5.46 to 11.5.50 #1070
Annotations
3 warnings
|
Tests:
lib/Date.php#L181
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
public function offsetByYears(int $years): self
{
if ($years === 0) {
- return $this;
+
}
return $this->modify(\sprintf('%d years', $years));
|
|
Tests:
lib/Date.php#L169
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
public function offsetByMonths(int $months): self
{
if ($months === 0) {
- return $this;
+
}
return $this->modify(\sprintf('%d months', $months));
|
|
Tests:
lib/Date.php#L156
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
public function offsetByDays(int $days): self
{
if ($days === 0) {
- return $this;
+
}
return $this->modify(\sprintf('%d days', $days));
|
Loading