Skip to content

Commit 51cc153

Browse files
committed
CS fixes
1 parent 25ee1a8 commit 51cc153

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

tests/unit/Factory/CalculateAwardMilesWithTaxParametersFactoryTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ public function shouldReturnGetTimetableParameters() : void
3030
{
3131
$json =<<<JSON
3232
{
33-
"awardType": "E",
34-
"wantMoreMiles": "T",
35-
"isOneWay": "T",
36-
"departureOrigin": "IST",
37-
"departureDestination": "FRA",
38-
"departureDateDay": 12,
39-
"departureDateMonth": 11,
40-
"departureDateYear": 2017
33+
"awardType": "E",
34+
"wantMoreMiles": "T",
35+
"isOneWay": "T",
36+
"departureOrigin": "IST",
37+
"departureDestination": "FRA",
38+
"departureDateDay": 12,
39+
"departureDateMonth": 11,
40+
"departureDateYear": 2017
4141
}
4242
JSON;
4343
$parameterObject = CalculateAwardMilesWithTaxParametersFactory::createFromJson($json);

tests/unit/Factory/CalculateFlightMilesParametersFactoryTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ public function shouldReturnCalculateFlightMilesParameters() : void
2929
{
3030
$json =<<<JSON
3131
{
32-
"cabin_code": "Y",
33-
"card_type": "EP",
34-
"destination": "IST",
35-
"flightDate": "21.04.2017",
36-
"operatingFlightNumber": "TK1000",
37-
"origin": "FRA"
32+
"cabin_code": "Y",
33+
"card_type": "EP",
34+
"destination": "IST",
35+
"flightDate": "21.04.2017",
36+
"operatingFlightNumber": "TK1000",
37+
"origin": "FRA"
3838
}
39-
39+
4040
JSON;
4141
$parameterObject = CalculateFlightMilesParametersFactory::createFromJson($json);
4242
$this->assertInstanceOf(CalculateFlightMilesParameters::class, $parameterObject);

0 commit comments

Comments
 (0)