Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit aed7718

Browse files
committed
Enforce strict type on library
1 parent 67aef84 commit aed7718

11 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All Notable changes to `Period Visualizer` will be documented in this file
44

5+
## 0.3.1 - 2018-12-21
6+
7+
- Enforces strict types
8+
59
## 0.3.0 - 2018-12-21
610

711
- Removed the `OutputInterface`.
@@ -14,8 +18,7 @@ All Notable changes to `Period Visualizer` will be documented in this file
1418

1519
## 0.2.1 - 2018-12-20
1620

17-
- Bug Fix `ConsoleOutput::render` method. Once the matrix is created we just use it and we non longer rely on
18-
the submitted data.
21+
- Bug Fix `ConsoleOutput::render` method. Once the matrix is created we just use it and we non longer rely on the submitted data.
1922

2023
## 0.2.0 - 2018-12-20
2124

src/ConsoleConfig.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer;
1315

1416
use InvalidArgumentException;

src/ConsoleOutput.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer;
1315

1416
use League\Period\Period;

src/Label/AffixType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer\Label;
1315

1416
use League\Period\Sequence;

src/Label/IntegerType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer\Label;
1315

1416
use League\Period\Sequence;

src/Label/LabelGenerator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer\Label;
1315

1416
use League\Period\Sequence;

src/Label/LetterType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer\Label;
1315

1416
use League\Period\Sequence;

src/Label/ReverseType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer\Label;
1315

1416
use League\Period\Sequence;

src/Label/RomanType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer\Label;
1315

1416
use League\Period\Sequence;

src/Matrix.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer;
1315

1416
use League\Period\Period;

src/Viewer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace Bakame\Period\Visualizer;
1315

1416
use Bakame\Period\Visualizer\Label\LabelGenerator;

0 commit comments

Comments
 (0)