Completed
Push — v4.0-dev ( b01e70 )
by
unknown
01:53
created

AbstractArgs   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
getName() 0 1 ?
1
<?php
2
3
namespace League\Plates\RenderContext;
4
5
use League\Plates;
6
7
abstract class AbstractArgs
8
{
9
    public $render;
10
    public $template;
11
12
    public function __construct(Plates\RenderTemplate $render, Plates\Template $template) {
13
        $this->render = $render;
14
        $this->template = $template;
15
    }
16
17
    abstract public function getName();
18
}
19