Skip to content

Commit

Permalink
Merge pull request #56 from zaporylie/fix
Browse files Browse the repository at this point in the history
Fixes composer and date handling
  • Loading branch information
zaporylie authored Jul 26, 2024
2 parents 27a300e + e0b93c9 commit f32b1d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"keywords": ["payment"],
"require": {
"php": "^7.4 || ^8.0",
"psr/http-message": "^1.0",
"psr/http-message": "^2",
"psr/http-client-implementation": "^1.0",
"php-http/message": "^1.6",
"php-http/httplug": "^1.0 || ^2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Model/EPayment/v1/EventLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class EventLog
* Strangely timestamps occasionally feature too many microseconds.
*
* @var \DateTimeInterface
* @Serializer\Type("DateTime<'Y-m-d\TH:i:s.u\Z', '', ['Y-m-d\TH:i:s.u\Z','Y-m-d\TH:i:s.\0u\Z']>")
* @Serializer\Type("DateTime<'Y-m-d\TH:i:s.u\Z', '', ['Y-m-d\TH:i:s.u\0\Z', 'Y-m-d\TH:i:s.u\1\Z', 'Y-m-d\TH:i:s.u\2\Z', 'Y-m-d\TH:i:s.u\3\Z', 'Y-m-d\TH:i:s.u\4\Z', 'Y-m-d\TH:i:s.u\5\Z', 'Y-m-d\TH:i:s.u\6\Z', 'Y-m-d\TH:i:s.u\7\Z', 'Y-m-d\TH:i:s.u\8\Z', 'Y-m-d\TH:i:s.u\9\Z', 'Y-m-d\TH:i:s.u\Z']>")
*/
protected $timestamp;

Expand Down

0 comments on commit f32b1d6

Please sign in to comment.