4 Commits
0.1.4 ... 0.1.5

Author SHA1 Message Date
petermarynczak
7d1cc5384e Merge pull request #7 from wiosna-dev/feature/WZUW-1498-Lime_misinterpretation_of_time
[WZUW-1498] [prod] Using 24-hour format to set validfrom date_time
2025-09-12 12:57:49 +02:00
petermarynczak
e74f2e1a51 Merge pull request #8 from wiosna-dev/feature/WZUW-1267-Lime_surveys
[WZUW-1267] [master] Update version of wiosna-dev/common-library
2025-09-12 12:54:26 +02:00
Piotr Marynczak
4f7a72dc0b [WZUW-1498] feat: Using 24-hour format to set validfrom date_time 2025-09-11 13:42:26 +02:00
Piotr Marynczak
13886da84d [WZUW-1267] package: Update version of wiosna-dev/common-library 2025-05-20 16:33:06 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
"require": {
"php": ">=5.6",
"fguillot/json-rpc": "^1.2",
"wiosna-dev/common-library": "^0.1.9"
"wiosna-dev/common-library": "^0.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.6",

View File

@@ -302,7 +302,7 @@ class SurveyService
'firstname' => $firstName,
'lastname' => $lastName,
'email' => $email,
'validfrom' => date('Y-m-d h:i:s'),
'validfrom' => date('Y-m-d H:i:s'),
],
];