1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Model\Metadata;
- use Magento\Customer\Api\AddressMetadataInterface;
- /**
- * Cached customer address attribute metadata
- */
- class AddressCachedMetadata extends CachedMetadata implements AddressMetadataInterface
- {
- /**
- * @var string
- */
- protected $entityType = 'customer_address';
- /**
- * Constructor
- *
- * @param AddressMetadata $metadata
- * @param AttributeMetadataCache|null $attributeMetadataCache
- */
- public function __construct(
- AddressMetadata $metadata,
- AttributeMetadataCache $attributeMetadataCache = null
- ) {
- parent::__construct($metadata, $attributeMetadataCache);
- }
- }
|