CssHandler   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A handleQueue() 0 7 2
1
<?php
2
3
namespace Dumkaaa\BxOptimize\Handler;
4
5
class CssHandler extends Handler
6
{
7
    /** {@inheritdoc} */
8
    protected $validExt = [
9
        'css',
10
    ];
11
12
    /**
13
     * {@inheritdoc}
14
     */
15
    public function handleQueue()
16
    {
17
        foreach ($this->files as $file) {
18
            echo get_class() . " обрабатывает файл: $file\n";
19
        }
20
        // TODO: Implement handleQueue() method.
21
    }
22
}
23