Passed
Push — master ( 3c6756...8b3b37 )
by Michael
20:43 queued 12:59
created

CustomOp   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 4
c 2
b 0
f 0
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 5 1
1
<?php
2
3
namespace WideImage\Operation;
4
5
/**
6
 * @package Tests
7
 */
8
class CustomOp
9
{
10
	public static $args = null;
11
12
	public function execute()
13
	{
14
		static::$args = func_get_args();
15
16
		return static::$args[0]->copy();
17
	}
18
}
19