mageekguy\atoum\php\mocker\adapter\invoker: lines coverage

100% of 14

OPs

100% of 1

Lines

100% of 1

Branches

100% of 1

Paths
Method OPs OPs % Lines Line % Branches Branches % Paths Path %
mageekguy\atoum\php\mocker\adapter\invoker::invoke() 14 100% 1 100% 1 100% 1 100%
#
1
<?php
2

                    
3
namespace mageekguy\atoum\php\mocker\adapter;
4

                    
5
use mageekguy\atoum\test\adapter;
6

                    
7
class invoker extends adapter\invoker
8
{
9
	public function invoke(array $arguments = array(), $call = 0)100%
10
	{
11
		return parent::invoke($arguments, $call);
12
	}
13
}