schneespur/vendor/thecodingmachine/safe/generator/config/ignoredFunctions.php
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +00:00

20 lines
795 B
PHP

<?php
return [
'array_key_exists',
'is_executable',
'is_uploaded_file',
'stream_is_local',
'is_soap_fault',
'oci_lob_copy', // Type hints to object OCI-Lob (weird class that has a dash in its name!)
'func_get_arg',
'call_user_func_array',
'mb_check_encoding',
'array_search',
'forward_static_call',
'forward_static_call_array',
'readdir', // the documentation is false: the function returns false at the end of the iteration
'apcu_delete', // apcu_delete returns false when the $key does not exist in the cache store
'filter_has_var', // this function is meant to return a boolean
'array_multisort', // this function is too buggy, see PR #113 on GitHub
'libxml_get_last_error', // returns false to mean "everything is fine"
];