UncaughtThrowInGlobalScope
March 20, 2020 ยท View on GitHub
Emitted when a possible exception isn't caught in global scope
<?php
/**
* @throws \Exception
*/
function foo() : int {
return random_int(0, 1);
}
foo();
March 20, 2020 ยท View on GitHub
Emitted when a possible exception isn't caught in global scope
<?php
/**
* @throws \Exception
*/
function foo() : int {
return random_int(0, 1);
}
foo();