1 | <?php |
||
19 | abstract class StatementObject |
||
20 | { |
||
21 | /** |
||
22 | * Checks if another object is equal. |
||
23 | * |
||
24 | * Two objects are equal if and only if all of their properties are equal. |
||
25 | * |
||
26 | * @param StatementObject $object The object to compare with |
||
27 | * |
||
28 | * @return bool True if the objects are equal, false otherwise |
||
29 | */ |
||
30 | public function equals(StatementObject $object) |
||
34 | } |
||
35 |