Lines:
1 to 26 of 26
<?php // (C) Copyright Bobbing Wide 2014 /* function oikai_api_type() – Determine the api type */ /* function oikai_choose_desc() – Decide what to use for the "Description" */ /* function oikai_first_line() – The end of the first line is detected by a newline character (n) NOT a carriage return (r) NOT PHP_EOL; */ /* function oikai_reverse_engineer_funcname() – Given a funcname attempt to produce a short description for the function */ /* function oikai_function_implements() – Return information about the function implementing something */ /* function oikai_parm_match() – Attempt to determine the API type based on the parameters */ /* function oikai_compare_param() – Compare an actual parameter with one we’re looking for */ /* function oikai_compare_value() – Compare a param’s method result with the given value */ /* function oikai_funcname_analysis() – Detect "hook" type functions that end with a hook suffix e.g. __help */View on GitHub