Completed
Pull Request — master (#14)
by Roman
03:27
created

callstack.php ➔ bas()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
function bas()
4
{
5
    return function () {
6
        return function () {
7
            return function () {
8
                throw new Exception;
9
            };
10
        };
11
    };
12
}
13