Cow
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 17
c 0
b 0
f 0
1
<?php
2
namespace Cowsayphp\Farm;
3
4
use Cowsayphp\AbstractAnimal;
5
6
class Cow extends AbstractAnimal
7
{
8
    /**
9
     * The fantastic cow string
10
     */
11
    protected $character = <<<DOC
12
13
{{bubble}}
14
        \   ^__^            
15
         \  (oo)\_______    
16
            (__)\       )\/\
17
                ||----w |   
18
                ||     ||   
19
20
DOC;
21
22
}
23