/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ExitCode.php (1404B)
exitCode = $exitCode;
}
/**
* Checks if event is in fired array
*
* @param mixed $other Constraint check
* @return bool
*/
public function matches($other): bool
{
return $other === $this->exitCode;
}
/**
* Assertion message string
*
* @return string
*/
public function toString(): string
{
return sprintf('matches exit code %s', $this->exitCode ?? 'null');
}
}