Completed
Push — 186-data ( 572d68...d14d7f )
by
unknown
10:34
created

PathExtension   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 7 1
1
<?php
2
3
namespace League\Plates\Extension\Path;
4
5
use League\Plates;
6
7
final class PathExtension implements Plates\Extension
8
{
9
    public function register(Plates\Engine $plates) {
10
        $c = $plates->getContainer();
11
        $c->add('resolve_path_stack', function() {
12
13
        });
14
        $c->add();
0 ignored issues
show
Bug introduced by
The call to add() misses some required arguments starting with $id.
Loading history...
15
    }
16
}
17