Skip to content

Commit e074bb8

Browse files
author
Martin Brecht-Precht
committed
Fixed issues in the BlockParent and ContentParent interfaces.
1 parent b9e3ad4 commit e074bb8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Block/BlockParentInterface.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ interface BlockParentInterface extends NodeInterface
1818
const BLOCK_PARENT_TYPE_LIST_ITEM = 'LIST_ITEM';
1919
const BLOCK_PARENT_TYPE_QUOTE = 'QUOTE';
2020

21-
/**
22-
* @return string
23-
*/
24-
public function getContentParentType();
25-
2621
/**
2722
* @return string
2823
*/

src/Content/ContentParentInterface.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ interface ContentParentInterface extends NodeInterface
2020
const CONTENT_PARENT_TYPE_LINK = 'LINK';
2121
const CONTENT_PARENT_TYPE_PARAGRAPH = 'PARAGRAPH';
2222

23+
/**
24+
* @return string
25+
*/
26+
public function getContentParentType();
27+
2328
/**
2429
* @return BlockInterface
2530
*/

0 commit comments

Comments
 (0)