Skip to content

Commit

Permalink
spry-2561 Change access modifier of constants and properties in Produ…
Browse files Browse the repository at this point in the history
…ctFirstSpiritApiBusinessMapper class to protected.
  • Loading branch information
HaukeBST committed Nov 21, 2023
1 parent 0db992c commit 2ef1ec4
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,52 +15,52 @@ class ProductFirstSpiritApiBusinessMapper implements ProductFirstSpiritApiBusine
/**
* @var string
*/
private const KEY_ID_PRODUCT_ABSTRACT = 'id_product_abstract';
protected const KEY_ID_PRODUCT_ABSTRACT = 'id_product_abstract';

/**
* @var string
*/
private const KEY_ID_PRODUCT_CONCRETE = 'id_product_concrete';
protected const KEY_ID_PRODUCT_CONCRETE = 'id_product_concrete';

/**
* @var string
*/
private const KEY_ID = 'id';
protected const KEY_ID = 'id';

/**
* @var string
*/
private const KEY_LABEL = 'label';
protected const KEY_LABEL = 'label';

/**
* @var string
*/
private const KEY_URL = 'url';
protected const KEY_URL = 'url';

/**
* @var string
*/
private const KEY_EXTRACT = 'extract';
protected const KEY_EXTRACT = 'extract';

/**
* @var string
*/
private const KEY_IMAGE = 'image';
protected const KEY_IMAGE = 'image';

/**
* @var string
*/
private const KEY_THUMBNAIL = 'thumbnail';
protected const KEY_THUMBNAIL = 'thumbnail';

/**
* @var string
*/
private const KEY_NAME = 'name';
protected const KEY_NAME = 'name';

/**
* @var \Spryker\Client\ProductStorage\ProductStorageClientInterface
*/
private ProductStorageClientInterface $productStorageClient;
protected ProductStorageClientInterface $productStorageClient;

/**
* @param \Spryker\Client\ProductStorage\ProductStorageClientInterface $productStorageClient
Expand Down

0 comments on commit 2ef1ec4

Please sign in to comment.