PHP Classes

File: vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_method.tpl.dist

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_method.tpl.dist   Download  
File: vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_method.tpl.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 720 bytes
 

Contents

Class file image Download
{modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type} {{deprecation} $arguments = array({arguments_call}); $count = func_num_args(); if ($count > {arguments_count}) { $_arguments = func_get_args(); for ($i = {arguments_count}; $i < $count; $i++) { $arguments[] = $_arguments[$i]; } } $result = $this->__phpunit_getInvocationMocker()->invoke( new \PHPUnit\Framework\MockObject\Invocation\ObjectInvocation( '{class_name}', '{method_name}', $arguments, '{return_type}', $this, {clone_arguments} ) ); return $result; }