Back to Psalm

UncaughtThrowInGlobalScope

docs/running_psalm/issues/UncaughtThrowInGlobalScope.md

6.16.1202 B
Original Source

UncaughtThrowInGlobalScope

Emitted when a possible exception isn't caught in global scope

php
<?php

/**
 * @throws \Exception
 */
function foo() : int {
    return random_int(0, 1);
}
foo();