| 1 | <?php |
||
| 19 | final class StateDocument extends Document |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var State The state the document is associated to |
||
| 23 | */ |
||
| 24 | private $state; |
||
| 25 | |||
| 26 | public function __construct(State $state, DocumentData $data) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Returns the document's {@link State}. |
||
| 35 | * |
||
| 36 | * @return State The state |
||
| 37 | */ |
||
| 38 | public function getState() |
||
| 42 | } |
||
| 43 |