Skip to content

Commit 4e2ae72

Browse files
oliverbjgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0d8b8f8 commit 4e2ae72

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/Cord.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public function criteriaGroup(array $criteria, string $type = 'Partial'): self
144144
'CriteriaGroup' => [
145145
'_attributes' => ['Type' => $type],
146146
'Criteria' => [],
147-
]
147+
],
148148
];
149149

150150
foreach ($criteria as $item) {
@@ -153,7 +153,7 @@ public function criteriaGroup(array $criteria, string $type = 'Partial'): self
153153
'Entity' => $item['Entity'],
154154
'FieldName' => $item['FieldName'],
155155
],
156-
'_value' => $item['Value']
156+
'_value' => $item['Value'],
157157
];
158158
}
159159

@@ -162,7 +162,6 @@ public function criteriaGroup(array $criteria, string $type = 'Partial'): self
162162
return $this;
163163
}
164164

165-
166165
/**
167166
* Determine if the request is for a brokerage job.
168167
*/
@@ -260,7 +259,6 @@ public function run()
260259
RequestType::NativeOrganizationRetrieval => new NativeOrganizationRetrieval($this)
261260
};
262261

263-
264262
$this->xml = $requestType->xml();
265263

266264
return $this->fetch();

src/Requests/NativeOrganizationRetrieval.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ private function defineSchema(array $criteriaGroups): array
1313
{
1414
$schema = [
1515
'Body' => [
16-
'Organization' => []
17-
]
16+
'Organization' => [],
17+
],
1818
];
1919

2020
array_push($schema['Body']['Organization'], $criteriaGroups[0]);

0 commit comments

Comments
 (0)