| 1 | <?php |
||
| 19 | final class StatementReference extends Object |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string The id of the referenced Statement |
||
| 23 | */ |
||
| 24 | private $statementId; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $statementId |
||
| 28 | */ |
||
| 29 | public function __construct($statementId) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Returns the id of the referenced Statement. |
||
| 36 | * |
||
| 37 | * @return string The id |
||
| 38 | */ |
||
| 39 | public function getStatementId() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function equals(Object $object) |
||
| 57 | } |
||
| 58 |