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

AbstractArgs::getName()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
nc 1
dl 0
loc 1
c 0
b 0
f 0
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