Continuous Integration #77
commit.yml
on: schedule
Matrix: Unit Tests
Code Style (PSR-12)
13s
Matrix: Infection Check
Matrix: Static Analysis Check
Code Coverage Report
5s
Annotations
1 error and 28 warnings
|
Infection Check (8.5)
Process completed with exit code 1.
|
|
Unit Tests (windows-latest, 8.4)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (windows-latest, 8.5)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (ubuntu-latest, 8.3)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (macos-latest, 8.3)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (macos-latest, 8.5)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Code Style (PSR-12)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (ubuntu-latest, 8.5)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (ubuntu-latest, 8.4)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (ubuntu-latest, 8.2)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (windows-latest, 8.3)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Static Analysis Check (8.5)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (macos-latest, 8.4)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Static Analysis Check (8.2)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Infection Check (8.5):
src/SmartString.php#L195
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
public function concat(Stringable|string $additionalValue): SmartString
{
if ($this->shouldUseGrapheme) {
- // If we're already multibyte characters, then the result of a concatenation will be too
- return new SmartString($this . $additionalValue, $this->shouldUseGrapheme);
+
}
return static::build($this . $additionalValue);
}
}
|
|
Infection Check (8.5):
src/SmartString.php#L130
Escaped Mutant for Mutator "BitwiseAnd":
@@ @@
#[Pure]
public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = 0): int|false
{
- if (($flags & self::CASE_INSENSITIVE) == self::CASE_INSENSITIVE) {
+ if (($flags | self::CASE_INSENSITIVE) == self::CASE_INSENSITIVE) {
return $this->stripos($needle, $offset);
}
return $this->strpos($needle, $offset);
|
|
Infection Check (8.5):
src/SmartString.php#L128
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
};
}
#[Pure]
- public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = 0): int|false
+ public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = 1): int|false
{
if (($flags & self::CASE_INSENSITIVE) == self::CASE_INSENSITIVE) {
return $this->stripos($needle, $offset);
|
|
Infection Check (8.5):
src/SmartString.php#L128
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
};
}
#[Pure]
- public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = 0): int|false
+ public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = -1): int|false
{
if (($flags & self::CASE_INSENSITIVE) == self::CASE_INSENSITIVE) {
return $this->stripos($needle, $offset);
|
|
Infection Check (8.5):
src/SmartString.php#L128
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
};
}
#[Pure]
- public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = 0): int|false
+ public function findPosition(Stringable|string $needle, int $offset = 1, int $flags = 0): int|false
{
if (($flags & self::CASE_INSENSITIVE) == self::CASE_INSENSITIVE) {
return $this->stripos($needle, $offset);
|
|
Infection Check (8.5):
src/SmartString.php#L128
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
};
}
#[Pure]
- public function findPosition(Stringable|string $needle, int $offset = 0, int $flags = 0): int|false
+ public function findPosition(Stringable|string $needle, int $offset = -1, int $flags = 0): int|false
{
if (($flags & self::CASE_INSENSITIVE) == self::CASE_INSENSITIVE) {
return $this->stripos($needle, $offset);
|
|
Infection Check (8.5):
src/SmartString.php#L118
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
return $this->substr($offset, $length);
}
#[Pure]
- public function strpos(Stringable|string $needle, int $offset = 0): int|false
+ public function strpos(Stringable|string $needle, int $offset = 1): int|false
{
$needle = (string) $needle;
return match ($this->shouldUseGrapheme) {
|
|
Infection Check (8.5):
src/SmartString.php#L118
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
return $this->substr($offset, $length);
}
#[Pure]
- public function strpos(Stringable|string $needle, int $offset = 0): int|false
+ public function strpos(Stringable|string $needle, int $offset = -1): int|false
{
$needle = (string) $needle;
return match ($this->shouldUseGrapheme) {
|
|
Infection Check (8.5):
src/SmartString.php#L52
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
return $this->value;
}
#[Pure]
- public function stripos(Stringable|string $needle, int $offset = 0): int|false
+ public function stripos(Stringable|string $needle, int $offset = 1): int|false
{
$needle = (string) $needle;
return match ($this->shouldUseGrapheme) {
|
|
Infection Check (8.5):
src/SmartString.php#L52
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
return $this->value;
}
#[Pure]
- public function stripos(Stringable|string $needle, int $offset = 0): int|false
+ public function stripos(Stringable|string $needle, int $offset = -1): int|false
{
$needle = (string) $needle;
return match ($this->shouldUseGrapheme) {
|
|
Infection Check (8.5)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Static Analysis Check (8.4)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (macos-latest, 8.2)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Unit Tests (windows-latest, 8.2)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
Static Analysis Check (8.3)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
codecov
Expired
|
1.06 KB |
sha256:50f3cfd4c88a237a2a11d5512ef2712b4a196ad6a9610a3ddfc23d6d7e6ce75c
|
|