| 1 | <?php |
||
| 14 | final class OnClearEventArgs extends BaseOnClearEventArgs |
||
| 15 | { |
||
| 16 | public function getDocumentManager() : DocumentManager |
||
| 17 | { |
||
| 18 | $dm = $this->getObjectManager(); |
||
| 19 | assert($dm instanceof DocumentManager); |
||
| 20 | return $dm; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getDocumentClass() : ?string |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Returns whether this event clears all documents. |
||
| 30 | */ |
||
| 31 | public function clearsAllDocuments() : bool |
||
| 35 | } |
||
| 36 |