Completed
Push — rework ( 30a2d6...381fae )
by Markus
02:34
created

AbstractHandler::handle()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
nc 1
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
namespace SSpkS\Handler;
4
5
abstract class AbstractHandler
6
{
7
    protected $config;
8
9
    public function __construct(\SSpkS\Config $config)
10
    {
11
        $this->config = $config;
12
    }
13
14
    abstract public function handle();
15
}
16