Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit 3a5fad4

Browse files
author
Nenad Stojanovikj
authored
Merge pull request #9 from hellofresh/php71-compatibility
Add 7.1 compatibility
2 parents a523acb + 160905f commit 3a5fad4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require": {
1313
"php": ">=5.6",
1414
"ramsey/uuid": "^3.0",
15-
"easyframework/collections": "^6.0",
15+
"easyframework/collections": "^7.0.0",
1616
"beberlei/assert": "^2.5"
1717
},
1818
"require-dev": {

tests/EventStore/EventStoreTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace HelloFresh\Tests\Engine\EventStore;
44

55
use HelloFresh\Engine\Domain\AggregateId;
6-
use HelloFresh\Engine\Domain\AggregateIdInterface;
76
use HelloFresh\Engine\Domain\DomainMessage;
87
use HelloFresh\Engine\Domain\EventStream;
98
use HelloFresh\Engine\Domain\StreamName;
@@ -96,7 +95,7 @@ protected function createDomainMessage($id, $version, $recordedOn = null)
9695
return new DomainMessage(
9796
$id,
9897
$version,
99-
new SomethingHappened(),
98+
new SomethingHappened($recordedOn),
10099
$recordedOn ? $recordedOn : new \DateTimeImmutable("now")
101100
);
102101
}

tests/Mock/SomethingHappened.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ class SomethingHappened implements DomainEventInterface
1414
/**
1515
* SomethingHappened constructor.
1616
*/
17-
public function __construct()
17+
public function __construct(\DateTimeInterface $dateTime = null)
1818
{
19-
$this->occurredOn = new \DateTime();
19+
$this->occurredOn = $dateTime === null ? $dateTime : new \DateTime();
2020
}
2121

2222
/**

0 commit comments

Comments
 (0)