-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Product Group processing deported to product models import
- Loading branch information
1 parent
c4917ac
commit d8f2a20
Showing
22 changed files
with
194 additions
and
473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Synolia\SyliusAkeneoPlugin\Component\Cache; | ||
|
||
class CacheKey | ||
{ | ||
public const FAMILIES = 'akeneo:families'; | ||
|
||
public const FAMILY = 'akeneo:family:%s'; | ||
|
||
public const FAMILY_BY_VARIANT_CODE = 'akeneo:family_by_variant_code:%s'; | ||
|
||
public const FAMILY_VARIANTS = 'akeneo:family_variants:%s'; | ||
|
||
public const ATTRIBUTES = 'akeneo:attributes'; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.