1 | <?php |
||
10 | abstract class AbstractNullComparisonCondition extends AbstractCondition |
||
11 | { |
||
12 | private |
||
13 | $column; |
||
1 ignored issue
–
show
|
|||
14 | |||
15 | 16 | public function __construct($column) |
|
24 | |||
25 | 10 | public function toString(Escaper $escaper): string |
|
37 | |||
38 | 8 | public function isEmpty(): bool |
|
42 | |||
43 | abstract protected function getOperator(): string; |
||
44 | } |
||
45 |
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.