1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Switch exit codes

This commit is contained in:
Matthew Brown 2020-02-26 09:33:07 -05:00 committed by GitHub
parent 746f8d4973
commit 9163878174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,8 +54,8 @@ use function version_compare;
*/
class Pool
{
const EXIT_SUCCESS = 1;
const EXIT_FAILURE = 0;
const EXIT_SUCCESS = 0;
const EXIT_FAILURE = 1;
/** @var int[] */
private $child_pid_list = [];