Completed
Push — master ( aee42a...b52690 )
by Wim
8s
created

foo   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1
lcom 0
cbo 0
1
<?php
2
class foo {
3
    function foo() {
4
        echo 'I am the constructor - but I shouldn\'t be';
5
    }
6
}
7
8
class bar {
9
    function bar() {
10
        echo 'I am just the foo method';
11
    }
12
    function __construct() {
13
        echo 'I am the real constructor';
14
    }
15
}
16