Skip to content

Commit

Permalink
Added strict type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Brecht-Precht committed Apr 2, 2019
1 parent dfd8efb commit 67e038f
Show file tree
Hide file tree
Showing 28 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Block/BlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\Common\BlockType;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/BlockParentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\ModelInterface\Common\NodeInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/BlockSequenceInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\ModelInterface\Common\CountableIteratorInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/CodeBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/CommentBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/ContentParentBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\ModelInterface\Content\ContentParentInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/DivisionBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/DocumentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\DispatcherInterface\DispatcherInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/HeadingBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/ListBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/ListItemInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\HandlerInterface\HandlerInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/ListItemSequenceInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

use Markdom\ModelInterface\Common\CountableIteratorInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Block/OrderedListBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/ParagraphBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/QuoteBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Block/UnorderedListBlockInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Block;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Common/CountableIteratorInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Common;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Common/NodeInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Common;

use Markdom\ModelInterface\Block\DocumentInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Content/CodeContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Content/ContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

use Markdom\Common\ContentType;
Expand Down
2 changes: 2 additions & 0 deletions src/Content/ContentParentContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Content/ContentParentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

use Markdom\ModelInterface\Block\BlockInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Content/ContentSequenceInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

use Markdom\ModelInterface\Common\CountableIteratorInterface;
Expand Down
2 changes: 2 additions & 0 deletions src/Content/EmphasisContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Content/ImageContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Content/LinebreakContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Content/LinkContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Content/TextContentInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\ModelInterface\Content;

/**
Expand Down

0 comments on commit 67e038f

Please sign in to comment.