Skip to content

Commit f32e7a7

Browse files
author
Robin de Graaf
committed
Define strict types
1 parent 2e4948d commit f32e7a7

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Parable PHP DI
22

3+
## 0.2.2
4+
5+
_Changes_
6+
- Define strict types.
7+
38
## 0.2.1
49

510
_Bugfixes_
@@ -8,12 +13,12 @@ _Bugfixes_
813

914
## 0.2.0
1015

11-
_Bugfixes_
12-
- `clearRelationship()` had a bug where right-hand relationships weren't being cleared, leading to more class names being stored than necessary.
13-
1416
_Changes_
1517
- `STORED_DEPENDENCIES` and `NEW_DEPENDENCIES` are now `USE_STORED_DEPENDENCIES` and `USE_NEW_DEPENDENCIES`, for clarity.
1618

19+
_Bugfixes_
20+
- `clearRelationship()` had a bug where right-hand relationships weren't being cleared, leading to more class names being stored than necessary.
21+
1722
## 0.1.3
1823

1924
_Bugfixes_

src/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Parable\Di;
44

src/Exceptions/ContainerException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Parable\Di\Exceptions;
44

src/Exceptions/NotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Parable\Di\Exceptions;
44

0 commit comments

Comments
 (0)