Model/src/Statement.php 1 location
|
@@ 242-244 (lines=3) @@
|
| 239 |
|
return false; |
| 240 |
|
} |
| 241 |
|
|
| 242 |
|
if (null !== $this->result && !$this->result->equals($statement->result)) { |
| 243 |
|
return false; |
| 244 |
|
} |
| 245 |
|
|
| 246 |
|
if (null === $this->authority && null !== $statement->authority) { |
| 247 |
|
return false; |
Model/src/SubStatement.php 1 location
|
@@ 180-182 (lines=3) @@
|
| 177 |
|
return false; |
| 178 |
|
} |
| 179 |
|
|
| 180 |
|
if (null !== $this->result && !$this->result->equals($statement->result)) { |
| 181 |
|
return false; |
| 182 |
|
} |
| 183 |
|
|
| 184 |
|
return true; |
| 185 |
|
} |