Completed
Pull Request — 1.2 (#12)
by David
08:23
created

MyImplementation::getPrivateProperties()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
4
namespace Mouf\Html\Renderer\Fixtures;
5
6
7
class MyImplementation implements MyInterface
8
{
9
    public function getPrivateProperties(): array
10
    {
11
        return [
12
            'foo' => 'bar'
13
        ];
14
    }
15
}