1 | <?php |
||
8 | abstract class AbstractCommand implements CommandInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var array |
||
12 | */ |
||
13 | private $options = []; |
||
14 | |||
15 | /** |
||
16 | * Get a list of options that must be defined |
||
17 | * |
||
18 | * @return array |
||
19 | */ |
||
20 | abstract public function requiredOptions(); |
||
21 | |||
22 | /** |
||
23 | * @inheritDoc |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | public function options() |
||
42 | |||
43 | /** |
||
44 | * @inheritDoc |
||
45 | */ |
||
46 | public function withOptions(array $options) |
||
53 | |||
54 | /** |
||
55 | * @inheritDoc |
||
56 | */ |
||
57 | public function addOptions(array $options) |
||
64 | |||
65 | /** |
||
66 | * @inheritDoc |
||
67 | */ |
||
68 | public function hasOption($name) |
||
72 | |||
73 | /** |
||
74 | * @inheritDoc |
||
75 | */ |
||
76 | public function defaultOptions() |
||
80 | } |
||
81 |
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.