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