Completed
Push — develop ( 4961cb...5f7df1 )
by Matteo
03:22
created

StatusWorkingTree::all()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1.037
Metric Value
dl 0
loc 6
ccs 2
cts 3
cp 0.6667
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
crap 1.037
1
<?php
2
/**
3
 * GitElephant - An abstraction layer for git written in PHP
4
 * Copyright (C) 2013  Matteo Giachino
5
 *
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program.  If not, see [http://www.gnu.org/licenses/].
18
 */
19
20
namespace GitElephant\Status;
21
22
use \PhpCollection\Sequence;
23
24
/**
25
 * Class StatusWorkingTree
26
 *
27
 * @package GitElephant\Status
28
 */
29
class StatusWorkingTree extends Status
30
{
31
    /**
32
     * all files with modified status in the working tree
33
     *
34
     * @return Sequence
35
     */
36 1
    public function all()
37
    {
38
        return new Sequence(array_filter($this->files, function (StatusFile $statusFile) {
39
            return $statusFile->getWorkingTreeStatus();
40 1
        }));
41
    }
42
43
    /**
44
     * filter files by working tree status
45
     *
46
     * @param string $type
47
     *
48
     * @return Sequence
49
     */
50 1
    protected function filterByType($type)
51
    {
52 1
        if (!$this->files) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $this->files of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
53
            return new Sequence();
54
        }
55
56 1
        return new Sequence(array_filter($this->files, function (StatusFile $statusFile) use ($type) {
57 1
            return $type === $statusFile->getWorkingTreeStatus();
58 1
        }));
59
    }
60
}
61