Test Failed
Pull Request — master (#8)
by Timo
03:25
created

FileDriver   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A _setContainer() 0 3 1
1
<?php
2
3
namespace hamburgscleanest\GuzzleAdvancedThrottle\Cache\Drivers;
4
5
use Illuminate\Filesystem\Filesystem;
6
7
8
/**
9
 * Class FileDriver
10
 * @package hamburgscleanest\GuzzleAdvancedThrottle\Cache\Drivers
11
 */
12
class FileDriver extends LaravelDriver
13
{
14
15
    protected function _setContainer() : void
16
    {
17
        $this->_container['files'] = new Filesystem();
18
    }
19
}