Skip to content

Commit 4504b0f

Browse files
authored
Remove legal_entity which is no longer part of the Account API (#1663)
1 parent d569265 commit 4504b0f

File tree

2 files changed

+0
-169
lines changed

2 files changed

+0
-169
lines changed

lib/Account.php

-38
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,6 @@ public static function retrieve($id = null, $opts = null)
103103
public function serializeParameters($force = false)
104104
{
105105
$update = parent::serializeParameters($force);
106-
if (isset($this->_values['legal_entity'])) {
107-
$entity = $this['legal_entity'];
108-
if (isset($entity->_values['additional_owners'])) {
109-
$owners = $entity['additional_owners'];
110-
$entityUpdate = isset($update['legal_entity']) ? $update['legal_entity'] : [];
111-
$entityUpdate['additional_owners'] = $this->serializeAdditionalOwners($entity, $owners);
112-
$update['legal_entity'] = $entityUpdate;
113-
}
114-
}
115106
if (isset($this->_values['individual'])) {
116107
$individual = $this['individual'];
117108
if (($individual instanceof Person) && !isset($update['individual'])) {
@@ -122,35 +113,6 @@ public function serializeParameters($force = false)
122113
return $update;
123114
}
124115

125-
private function serializeAdditionalOwners($legalEntity, $additionalOwners)
126-
{
127-
if (isset($legalEntity->_originalValues['additional_owners'])) {
128-
$originalValue = $legalEntity->_originalValues['additional_owners'];
129-
} else {
130-
$originalValue = [];
131-
}
132-
if (($originalValue) && (\count($originalValue) > \count($additionalOwners))) {
133-
throw new Exception\InvalidArgumentException(
134-
'You cannot delete an item from an array, you must instead set a new array'
135-
);
136-
}
137-
138-
$updateArr = [];
139-
foreach ($additionalOwners as $i => $v) {
140-
$update = ($v instanceof StripeObject) ? $v->serializeParameters() : $v;
141-
142-
if ([] !== $update) {
143-
if (!$originalValue
144-
|| !\array_key_exists($i, $originalValue)
145-
|| ($update !== $legalEntity->serializeParamsValue($originalValue[$i], null, false, true))) {
146-
$updateArr[$i] = $update;
147-
}
148-
}
149-
}
150-
151-
return $updateArr;
152-
}
153-
154116
/**
155117
* @param null|array $clientId
156118
* @param null|array|string $opts

tests/Stripe/AccountTest.php

-131
Original file line numberDiff line numberDiff line change
@@ -289,137 +289,6 @@ public function testCanListPersons()
289289
static::compatAssertIsArray($resources->data);
290290
}
291291

292-
// TODO (MAJOR): Remove legal_entity/additional_owners logic.
293-
public function testSerializeNewAdditionalOwners()
294-
{
295-
/** @var Account $obj */
296-
$obj = Util\Util::convertToStripeObject([
297-
'object' => 'account',
298-
'legal_entity' => StripeObject::constructFrom([]),
299-
], null);
300-
$obj['legal_entity']->additional_owners = [
301-
['first_name' => 'Joe'],
302-
['first_name' => 'Jane'],
303-
];
304-
305-
$expected = [
306-
'legal_entity' => [
307-
'additional_owners' => [
308-
0 => ['first_name' => 'Joe'],
309-
1 => ['first_name' => 'Jane'],
310-
],
311-
],
312-
];
313-
static::assertSame($expected, $obj->serializeParameters());
314-
}
315-
316-
public function testSerializeAddAdditionalOwners()
317-
{
318-
$obj = Util\Util::convertToStripeObject([
319-
'object' => 'account',
320-
'legal_entity' => [
321-
'additional_owners' => [
322-
StripeObject::constructFrom(['first_name' => 'Joe']),
323-
StripeObject::constructFrom(['first_name' => 'Jane']),
324-
],
325-
],
326-
], null);
327-
$obj['legal_entity']->additional_owners[2] = ['first_name' => 'Andrew'];
328-
329-
$expected = [
330-
'legal_entity' => [
331-
'additional_owners' => [
332-
2 => ['first_name' => 'Andrew'],
333-
],
334-
],
335-
];
336-
static::assertSame($expected, $obj->serializeParameters());
337-
}
338-
339-
public function testSerializePartiallyChangedAdditionalOwners()
340-
{
341-
$obj = Util\Util::convertToStripeObject([
342-
'object' => 'account',
343-
'legal_entity' => [
344-
'additional_owners' => [
345-
StripeObject::constructFrom(['first_name' => 'Joe']),
346-
StripeObject::constructFrom(['first_name' => 'Jane']),
347-
],
348-
],
349-
], null);
350-
$obj['legal_entity']->additional_owners[1]->first_name = 'Stripe';
351-
352-
$expected = [
353-
'legal_entity' => [
354-
'additional_owners' => [
355-
1 => ['first_name' => 'Stripe'],
356-
],
357-
],
358-
];
359-
static::assertSame($expected, $obj->serializeParameters());
360-
}
361-
362-
public function testSerializeUnchangedAdditionalOwners()
363-
{
364-
$obj = Util\Util::convertToStripeObject([
365-
'object' => 'account',
366-
'legal_entity' => [
367-
'additional_owners' => [
368-
StripeObject::constructFrom(['first_name' => 'Joe']),
369-
StripeObject::constructFrom(['first_name' => 'Jane']),
370-
],
371-
],
372-
], null);
373-
374-
$expected = [
375-
'legal_entity' => [
376-
'additional_owners' => [],
377-
],
378-
];
379-
static::assertSame($expected, $obj->serializeParameters());
380-
}
381-
382-
public function testSerializeUnsetAdditionalOwners()
383-
{
384-
$obj = Util\Util::convertToStripeObject([
385-
'object' => 'account',
386-
'legal_entity' => [
387-
'additional_owners' => [
388-
StripeObject::constructFrom(['first_name' => 'Joe']),
389-
StripeObject::constructFrom(['first_name' => 'Jane']),
390-
],
391-
],
392-
], null);
393-
$obj['legal_entity']->additional_owners = null;
394-
395-
// Note that the empty string that we send for this one has a special
396-
// meaning for the server, which interprets it as an array unset.
397-
$expected = [
398-
'legal_entity' => [
399-
'additional_owners' => '',
400-
],
401-
];
402-
static::assertSame($expected, $obj->serializeParameters());
403-
}
404-
405-
public function testSerializeAdditionalOwnersDeletedItem()
406-
{
407-
$this->expectException(\InvalidArgumentException::class);
408-
409-
$obj = Util\Util::convertToStripeObject([
410-
'object' => 'account',
411-
'legal_entity' => [
412-
'additional_owners' => [
413-
StripeObject::constructFrom(['first_name' => 'Joe']),
414-
StripeObject::constructFrom(['first_name' => 'Jane']),
415-
],
416-
],
417-
], null);
418-
unset($obj['legal_entity']->additional_owners[0]);
419-
420-
$obj->serializeParameters();
421-
}
422-
423292
public function testSerializeExternalAccountString()
424293
{
425294
$obj = Util\Util::convertToStripeObject([

0 commit comments

Comments
 (0)