| Total Complexity | 3 | 
| Total Lines | 31 | 
| Duplicated Lines | 0 % | 
| Changes | 3 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 5 | class SimpleClass | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @var array | ||
| 9 | */ | ||
| 10 | public $constructorArgs = []; | ||
| 11 | |||
| 12 | /** | ||
| 13 | * SimpleClass constructor. | ||
| 14 | * | ||
| 15 | * @param int $arg1 | ||
| 16 | * @param int $arg2 | ||
| 17 | * @param bool $exception | ||
| 18 | * @throws \LogicException | ||
| 19 | */ | ||
| 20 | public function __construct($arg1 = 0, $arg2 = 0, $exception = false) | ||
| 28 | } | ||
| 29 | |||
| 30 | /** | ||
| 31 | * @return int | ||
| 32 | */ | ||
| 33 | public function testMe() | ||
| 38 |