- 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)
20 lines
795 B
PHP
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"
|
|
];
|