DecoratorInterface::defaults()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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