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) { |
|
|
|
|
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
|
|
|
|
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.