UndefinedFunction
A call targets a function that does not exist in the codebase or stubs.
Example
Section titled “Example”<?php$result = computeHash('data'); // function not defined anywhereHow to fix
Section titled “How to fix”Define the function, add the missing use import, or fix the spelling.