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 342042b commit 4260263
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
composer.lock
/vendor
2 changes: 2 additions & 0 deletions src/Common/BlockType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Markdom\Common;

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

declare(strict_types=1);

namespace Markdom\Common;

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

declare(strict_types=1);

namespace Markdom\Common;

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

declare(strict_types=1);

namespace Markdom\Common;

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

declare(strict_types=1);

namespace Markdom\DispatcherInterface;

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

declare(strict_types=1);

namespace Markdom\HandlerInterface;

/**
Expand Down

0 comments on commit 4260263

Please sign in to comment.