PHP Classes

File: Library/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Library/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php   Download  
File: Library/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change:
Date: 7 years ago
Size: 132 bytes
 

Contents

Class file image Download
<?php
function functionCallback()
{
   
$args = func_get_args();

    if (
$args == ['foo', 'bar']) {
        return
'pass';
    }
}