Completed
Pull Request — master (#1)
by Mathieu
04:21
created

GenericView::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace Charcoal\View;
4
5
use \Psr\Log\NullLogger;
6
7
/**
8
 * Concrete implementation of a _View_ interface (extends `AbstractView`).
9
 *
10
 */
11
class GenericView extends AbstractView
12
{
13
    // AbstractView is everything we need for now...
14
}
15