Skip to content

Commit 1a460dd

Browse files
author
Martin Brecht-Precht
committed
Switched naming from list to sequence
1 parent 404accf commit 1a460dd

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/Block/BlockParentInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface BlockParentInterface extends NodeInterface
2020
public function getDocument();
2121

2222
/**
23-
* @return BlockListInterface
23+
* @return BlockSequenceInterface
2424
*/
2525
public function getBlocks();
2626

src/Block/BlockListInterface.php renamed to src/Block/BlockSequenceInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
use Markdom\ModelInterface\Common\CountableIteratorInterface;
66

77
/**
8-
* Interface BlockListInterface
8+
* Interface BlockSequenceInterface
99
*
1010
* @package Markdom\ModelInterface\Block
1111
*/
12-
interface BlockListInterface extends CountableIteratorInterface
12+
interface BlockSequenceInterface extends CountableIteratorInterface
1313
{
1414

1515
/**

src/Block/ListBlockInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface ListBlockInterface extends BlockInterface
1111
{
1212

1313
/**
14-
* @return ListItemListInterface
14+
* @return ListItemSequenceInterface
1515
*/
1616
public function getListItems();
1717

src/Block/ListItemListInterface.php renamed to src/Block/ListItemSequenceInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
use Markdom\ModelInterface\Common\CountableIteratorInterface;
66

77
/**
8-
* Interface ListItemListInterface
8+
* Interface ListItemSequenceInterface
99
*
1010
* @package Markdom\ModelInterface\Block
1111
*/
12-
interface ListItemListInterface extends CountableIteratorInterface
12+
interface ListItemSequenceInterface extends CountableIteratorInterface
1313
{
1414

1515
/**

src/Content/ContentParentInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface ContentParentInterface extends NodeInterface
2121
public function getBlock();
2222

2323
/**
24-
* @return ContentListInterface
24+
* @return ContentSequenceInterface
2525
*/
2626
public function getContents();
2727

src/Content/ContentListInterface.php renamed to src/Content/ContentSequenceInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
use Markdom\ModelInterface\Common\CountableIteratorInterface;
66

77
/**
8-
* Interface ContentListInterface
8+
* Interface ContentSequenceInterface
99
*
1010
* @package Markdom\ModelInterface\Content
1111
*/
12-
interface ContentListInterface extends CountableIteratorInterface
12+
interface ContentSequenceInterface extends CountableIteratorInterface
1313
{
1414

1515
/**

0 commit comments

Comments
 (0)