Merge pull request #3 from php-etl/feature/update-contracts #37
Annotations
2 warnings
src/Extractor.php#L25
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
$data = null;
while (!$this->file->eof()) {
try {
- $data = json_decode($this->file->fgets(), true, 512, \JSON_ERROR_NONE);
+ $data = json_decode($this->file->fgets(), true, 511, \JSON_ERROR_NONE);
(yield new AcceptanceResultBucket($data));
} catch (\Throwable $exception) {
$this->logger->critical($exception->getMessage(), ['item' => $data, 'exception' => $exception]);
|
src/Extractor.php#L25
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
$data = null;
while (!$this->file->eof()) {
try {
- $data = json_decode($this->file->fgets(), true, 512, \JSON_ERROR_NONE);
+ $data = json_decode($this->file->fgets(), true, 513, \JSON_ERROR_NONE);
(yield new AcceptanceResultBucket($data));
} catch (\Throwable $exception) {
$this->logger->critical($exception->getMessage(), ['item' => $data, 'exception' => $exception]);
|
The logs for this run have expired and are no longer available.
Loading