Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spry-2561 Change access modifier of constants and properties in Produ… #5

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading