Update yiisoft/test-support requirement from ^1.3 to ^3.0 #312
Annotations
2 warnings
src/ListenerConfigurationChecker.php#L63
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
throw new InvalidListenerConfigurationException($this->createNotCallableMessage($listener));
}
} catch (ContainerExceptionInterface $exception) {
- throw new InvalidListenerConfigurationException('Could not instantiate event listener or listener class has invalid configuration. Got ' . $this->listenerDump($listener) . '.', 0, $exception);
+ throw new InvalidListenerConfigurationException('Could not instantiate event listener or listener class has invalid configuration. Got ' . $this->listenerDump($listener), 0, $exception);
}
}
}
|
src/ListenerConfigurationChecker.php#L109
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
return sprintf('"%s" method is not defined in "%s" class.', $definition[1], $definition[0]::class);
}
}
- return 'Listener must be a callable. Got ' . $this->listenerDump($definition) . '.';
+ return 'Listener must be a callable. Got ' . $this->listenerDump($definition);
}
/**
* @throws ContainerExceptionInterface Error while retrieving the entry from container.
|
This job succeeded
Loading