1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Add void types where no return statement is present

This commit is contained in:
Jordi Boggiano 2022-02-18 10:38:54 +01:00
parent 32852304d0
commit abdc6893a6
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC
213 changed files with 1129 additions and 1130 deletions

View file

@ -48,7 +48,7 @@ class ProcessExecutorMock extends ProcessExecutor
*
* @return void
*/
public function expects(array $expectations, $strict = false, array $defaultHandler = array('return' => 0, 'stdout' => '', 'stderr' => ''))
public function expects(array $expectations, $strict = false, array $defaultHandler = array('return' => 0, 'stdout' => '', 'stderr' => '')): void
{
/** @var array{cmd: string|list<string>, return?: int, stdout?: string, stderr?: string, callback?: callable} $default */
$default = array('cmd' => '', 'return' => 0, 'stdout' => '', 'stderr' => '', 'callback' => null);
@ -175,12 +175,12 @@ class ProcessExecutorMock extends ProcessExecutor
public function executeAsync($command, $cwd = null)
{
$resolver = function ($resolve, $reject) {
$resolver = function ($resolve, $reject): void {
// TODO strictly speaking this should resolve with a mock Process instance here
$resolve();
};
$canceler = function () {
$canceler = function (): void {
throw new \RuntimeException('Aborted process');
};