Method
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 2
wmc 0
1
<?php
2
3
namespace SilverStripe\MFA\Tests\Stub\DuplicatedBasicMath;
4
5
use SilverStripe\MFA\Tests\Stub\BasicMath\Method as BasicMathMethod;
6
7
/**
8
 * Used to test conflict resolution between methods in the registry
9
 */
10
class Method extends BasicMathMethod
11
{
12
13
}
14