1 | <?php |
||
17 | class FingerprintPatcher { |
||
18 | |||
19 | /** |
||
20 | * @var TermListPatcher |
||
21 | */ |
||
22 | private $termListPatcher; |
||
23 | |||
24 | /** |
||
25 | * @var AliasGroupListPatcher |
||
26 | */ |
||
27 | private $aliasGroupListPatcher; |
||
28 | |||
29 | public function __construct() { |
||
33 | |||
34 | /** |
||
35 | * @since 1.0 |
||
36 | * |
||
37 | * @param Fingerprint $fingerprint |
||
38 | * @param Diff $patch typically an {@link EntityDiff} |
||
39 | * |
||
40 | * @throws PatcherException |
||
41 | */ |
||
42 | public function patchFingerprint( Fingerprint $fingerprint, Diff $patch ) { |
||
68 | |||
69 | } |
||
70 |
If an expression can have both
false
, andnull
as possible values. It is generally a good practice to always use strict comparison to clearly distinguish between those two values.