Completed
Pull Request — master (#12)
by Adam
04:47 queued 01:24
created

Index   A

Complexity

Total Complexity 11

Size/Duplication

Total Lines 54
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Test Coverage

Coverage 42.86%

Importance

Changes 0
Metric Value
wmc 11
lcom 1
cbo 3
dl 0
loc 54
ccs 9
cts 21
cp 0.4286
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
A addFilters() 0 6 3
A handleFilter() 0 6 3
A filter() 0 4 2
A stopWordFilter() 0 4 2
1
<?php
2
3
namespace BestServedCold\LaravelZendSearch\Laravel;
4
5
use BestServedCold\LaravelZendSearch\Lucene\Index as LuceneIndex;
6
use Illuminate\Config\Repository;
7
use Illuminate\Filesystem\Filesystem;
8
9
/**
10
 * Class Index
11
 * @package BestServedCold\LaravelZendSearch\Laravel
12
 */
13
class Index extends LuceneIndex
14
{
15
    /**
16
     * Index constructor.
17
     * @param Repository $config
18
     */
19 21
    public function __construct(Filter $filter, Repository $config, Filesystem $filesystem)
20
    {
21 21
        $this->setPath($config->get('search.index.path'));
22 21
        $this->addFilters($config->get('search.filters'), $filesystem);
23
24
        parent::__construct($filter);
25
    }
26
27
    /**
28
     * @param array $filters
29
     */
30 21
    private function addFilters(array $filters = [], Filesystem $filesystem)
31
    {
32 21
        foreach ($filters as $filter => $switch) {
33 21
            $switch === false ? null : $this->handleFilter($switch, $filter, $filesystem);
34
        }
35
    }
36
37
    /**
38
     * @param $switch
39
     * @param $filter
40
     * @param Filesystem $filesystem
41
     */
42 21
    private function handleFilter($switch, $filter, Filesystem $filesystem)
43
    {
44 21
        $filter === 'StopWords' && !is_array($switch)
45 21
            ? $this->stopWordFilter($filter, $switch, $filesystem)
0 ignored issues
show
Unused Code introduced by
The call to Index::stopWordFilter() has too many arguments starting with $filesystem.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
46
            : $this->filter($filter, $switch);
47
    }
48
49
    /**
50
     * @param $filter
51
     * @param $switch
52
     */
53
    private function filter($filter, $switch)
54
    {
55
        Filter::addFilter($filter, $switch === true ? [] : [$switch]);
56
    }
57
58
    /**
59
     * @param $switch
60
     * @param Filesystem $filesystem
61
     */
62
    private function stopWordFilter($switch, Filesystem $filesystem)
63
    {
64
        Filter::addStopWordFilter($switch === true ? 'en' : $switch, $filesystem);
65
    }
66
}
67