/home/techb158/dev.balacoffee.com/vendor/hamcrest/hamcrest-php/generator/parts
NameSizeModeActions
file_header.txt1200644editdlrm
functions_footer.txt00644editdlrm
functions_header.txt6540644editdlrm
functions_imports.txt00644editdlrm
matchers_footer.txt20644editdlrm
matchers_header.txt860644editdlrm
matchers_imports.txt200644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/hamcrest/hamcrest-php/generator/parts/functions_header.txt (654B)
if (!function_exists('assertThat')) { /** * Make an assertion and throw {@link Hamcrest_AssertionError} if it fails. * * Example: *
     * //With an identifier
     * assertThat("assertion identifier", $apple->flavour(), equalTo("tasty"));
     * //Without an identifier
     * assertThat($apple->flavour(), equalTo("tasty"));
     * //Evaluating a boolean expression
     * assertThat("some error", $a > $b);
     * 
*/ function assertThat() { $args = func_get_args(); call_user_func_array( array('Hamcrest\MatcherAssert', 'assertThat'), $args ); } }