Skip to content

Commit edf774e

Browse files
committed
fix document type check
1 parent 8e23073 commit edf774e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_support/Helper/PimcoreBackend.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public function seeDownload($fileName)
204204
*/
205205
public function seeEditablesPlacedOnDocument(Document $document, array $editables)
206206
{
207-
if (!$document instanceof Document\Snippet || !$document instanceof Document\Page) {
207+
if (!$document instanceof Document\Snippet && !$document instanceof Document\Page) {
208208
throw new ModuleException($this, sprintf('%s must be instance of %s or %s.', $document->getFullPath(), Document\Snippet::class, Document\Page::class));
209209
}
210210

0 commit comments

Comments
 (0)