Skip to content
Snippets Groups Projects
Commit e180887e authored by Jared Hancock's avatar Jared Hancock
Browse files

Last mile for test failures

Add stubs.php to include stub classes for built-in PHP classes used
throughout the code. This will allow the testing suite to verify that a
method exists, albeit not in our codebase
parent 5ea0a9dd
No related branches found
No related tags found
No related merge requests found
<?php
class mysqli {
function query() {}
function real_escape_string() {}
function fetch_row() {}
}
class ReflectionClass {
function getMethods() {}
}
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment