Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit a790e11

Browse files
Fixed variable declaration error
1 parent 6d2dc04 commit a790e11

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/guides/v2.3/howdoi/custom-attributes/text-field.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,22 +229,22 @@ class ExternalId implements DataPatchInterface
229229
/**
230230
* @var ModuleDataSetupInterface
231231
*/
232-
private ModuleDataSetupInterface $moduleDataSetup;
232+
private $moduleDataSetup;
233233

234234
/**
235235
* @var CustomerSetup
236236
*/
237-
private CustomerSetup $customerSetup;
237+
private $customerSetup;
238238

239239
/**
240240
* @var AttributeResource
241241
*/
242-
private AttributeResource $attributeResource;
242+
private $attributeResource;
243243

244244
/**
245245
* @var LoggerInterface
246246
*/
247-
private LoggerInterface $logger;
247+
private $logger;
248248

249249
/**
250250
* Constructor

0 commit comments

Comments
 (0)