8000 [Process] Remove a useless cast · symfony/symfony@2d5ce0d · GitHub
[go: up one dir, main page]

Skip to content

Commit 2d5ce0d

Browse files
committed
[Process] Remove a useless cast
1 parent 1f119cc commit 2d5ce0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Process/Process.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ private function doSignal(int $signal, bool $throwException): bool
14411441
}
14421442
}
14431443

1444-
$this->latestSignal = (int) $signal;
1444+
$this->latestSignal = $signal;
14451445
$this->fallbackStatus['signaled'] = true;
14461446
$this->fallbackStatus['exitcode'] = -1;
14471447
$this->fallbackStatus['termsig'] = $this->latestSignal;

0 commit comments

Comments
 (0)
0