DecoratorInterface
last analyzed

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 24
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
add() 0 1 ?
defaults() 0 1 ?
get() 0 1 ?
set() 0 1 ?
all() 0 1 ?
current() 0 1 ?
reset() 0 1 ?
1
<?php
2
3
namespace League\CLImate\Decorator\Component;
4
5
interface DecoratorInterface
6
{
7
    public function add($key, $value);
8
9
    /**
10
     * @return void
11
     */
12
13
    public function defaults();
14
15
    public function get($val);
16
17
    public function set($val);
18
19
    public function all();
20
21
    public function current();
22
23
    /**
24
     * @return void
25
     */
26
27
    public function reset();
28
}
29