diff --git a/config/Shared/common/config_logs-files.php b/config/Shared/common/config_logs-files.php index 5749aa3006..7bf252e0bb 100644 --- a/config/Shared/common/config_logs-files.php +++ b/config/Shared/common/config_logs-files.php @@ -1,5 +1,7 @@ > ZED REQUEST @@ -380,7 +382,7 @@ // >>> STORAGE -$config[StorageConstants::STORAGE_KV_SOURCE] = strtolower(getenv('SPRYKER_KEY_VALUE_STORE_ENGINE')) ?: 'redis'; +$config[StorageConstants::STORAGE_KV_SOURCE] = getenv('SPRYKER_KEY_VALUE_STORE_ENGINE') ? strtolower(getenv('SPRYKER_KEY_VALUE_STORE_ENGINE')) : 'redis'; $config[StorageRedisConstants::STORAGE_REDIS_PERSISTENT_CONNECTION] = true; $config[StorageRedisConstants::STORAGE_REDIS_SCHEME] = getenv('SPRYKER_KEY_VALUE_STORE_PROTOCOL') ?: 'tcp'; $config[StorageRedisConstants::STORAGE_REDIS_HOST] = getenv('SPRYKER_KEY_VALUE_STORE_HOST'); diff --git a/config/Shared/config_local.dist.php b/config/Shared/config_local.dist.php index 54944eeb9f..8b3dd86434 100644 --- a/config/Shared/config_local.dist.php +++ b/config/Shared/config_local.dist.php @@ -1,5 +1,7 @@ */tests/_output/* */tests/*/_data/* - - - - - + + + + + + - + @@ -57,4 +58,16 @@ 0 + + + + + + + + + + + + diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclGroup.php b/src/Orm/Zed/Acl/Persistence/SpyAclGroup.php index 507784b4ca..6a75931f6d 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclGroup.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclGroup as BaseSpyAclGroup; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchive.php b/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchive.php index 435fbf8d90..38904611dc 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchive.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclGroupArchive as BaseSpyAclGroupArchive; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchiveQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchiveQuery.php index 338f2eb3f6..9fd327f854 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchiveQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclGroupArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclGroupArchiveQuery as BaseSpyAclGroupArchiveQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclGroupQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclGroupQuery.php index 3a1ff6555a..2b54b02c26 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclGroupQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclGroupQuery as BaseSpyAclGroupQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRoles.php b/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRoles.php index fef17dcf99..e4f953d653 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRoles.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRoles.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclGroupsHasRoles as BaseSpyAclGroupsHasRoles; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRolesQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRolesQuery.php index 71c4f4bb87..d560b2ab67 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRolesQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclGroupsHasRolesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclGroupsHasRolesQuery as BaseSpyAclGroupsHasRolesQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRole.php b/src/Orm/Zed/Acl/Persistence/SpyAclRole.php index 9f54dee90c..500af8ff79 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRole.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRole.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRole as BaseSpyAclRole; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchive.php b/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchive.php index f07e579d7d..5294f0575f 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchive.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRoleArchive as BaseSpyAclRoleArchive; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchiveQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchiveQuery.php index 6b2b2a8193..75032dca52 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchiveQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRoleArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRoleArchiveQuery as BaseSpyAclRoleArchiveQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRoleQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclRoleQuery.php index e1c6c5c572..34f7639921 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRoleQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRoleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRoleQuery as BaseSpyAclRoleQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRule.php b/src/Orm/Zed/Acl/Persistence/SpyAclRule.php index a39ce413e3..7e5bd97c8d 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRule.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRule.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRule as BaseSpyAclRule; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchive.php b/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchive.php index ca52bfdc15..afbc8552a2 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchive.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRuleArchive as BaseSpyAclRuleArchive; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchiveQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchiveQuery.php index b923cf3b44..d3a6c13dd2 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchiveQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRuleArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRuleArchiveQuery as BaseSpyAclRuleArchiveQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclRuleQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclRuleQuery.php index 70c449e381..04c95041ca 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclRuleQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclRuleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclRuleQuery as BaseSpyAclRuleQuery; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroup.php b/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroup.php index fe7514d7f7..4c82c98900 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroup.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclUserHasGroup as BaseSpyAclUserHasGroup; diff --git a/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroupQuery.php b/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroupQuery.php index bb9a7a2de5..e950a8c9fd 100644 --- a/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroupQuery.php +++ b/src/Orm/Zed/Acl/Persistence/SpyAclUserHasGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Acl\Persistence; use Spryker\Zed\Acl\Persistence\Propel\AbstractSpyAclUserHasGroupQuery as BaseSpyAclUserHasGroupQuery; diff --git a/src/Orm/Zed/ApiKey/Persistence/SpyApiKey.php b/src/Orm/Zed/ApiKey/Persistence/SpyApiKey.php index 6e0b68578f..c75ef848ea 100644 --- a/src/Orm/Zed/ApiKey/Persistence/SpyApiKey.php +++ b/src/Orm/Zed/ApiKey/Persistence/SpyApiKey.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ApiKey\Persistence; use Spryker\Zed\ApiKey\Persistence\Propel\AbstractSpyApiKey as BaseSpyApiKey; diff --git a/src/Orm/Zed/ApiKey/Persistence/SpyApiKeyQuery.php b/src/Orm/Zed/ApiKey/Persistence/SpyApiKeyQuery.php index d9cb8448c4..dc456e9409 100644 --- a/src/Orm/Zed/ApiKey/Persistence/SpyApiKeyQuery.php +++ b/src/Orm/Zed/ApiKey/Persistence/SpyApiKeyQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ApiKey\Persistence; use Spryker\Zed\ApiKey\Persistence\Propel\AbstractSpyApiKeyQuery as BaseSpyApiKeyQuery; diff --git a/src/Orm/Zed/Asset/Persistence/SpyAsset.php b/src/Orm/Zed/Asset/Persistence/SpyAsset.php index f02ee02d5d..6152cfe5a6 100644 --- a/src/Orm/Zed/Asset/Persistence/SpyAsset.php +++ b/src/Orm/Zed/Asset/Persistence/SpyAsset.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Asset\Persistence; use Spryker\Zed\Asset\Persistence\Propel\AbstractSpyAsset as BaseSpyAsset; diff --git a/src/Orm/Zed/Asset/Persistence/SpyAssetQuery.php b/src/Orm/Zed/Asset/Persistence/SpyAssetQuery.php index 6af948d90e..36fb517800 100644 --- a/src/Orm/Zed/Asset/Persistence/SpyAssetQuery.php +++ b/src/Orm/Zed/Asset/Persistence/SpyAssetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Asset\Persistence; use Spryker\Zed\Asset\Persistence\Propel\AbstractSpyAssetQuery as BaseSpyAssetQuery; diff --git a/src/Orm/Zed/Asset/Persistence/SpyAssetStore.php b/src/Orm/Zed/Asset/Persistence/SpyAssetStore.php index ccc096ed97..fda73dd9e0 100644 --- a/src/Orm/Zed/Asset/Persistence/SpyAssetStore.php +++ b/src/Orm/Zed/Asset/Persistence/SpyAssetStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Asset\Persistence; use Spryker\Zed\Asset\Persistence\Propel\AbstractSpyAssetStore as BaseSpyAssetStore; diff --git a/src/Orm/Zed/Asset/Persistence/SpyAssetStoreQuery.php b/src/Orm/Zed/Asset/Persistence/SpyAssetStoreQuery.php index 44a8c627ed..06a4440044 100644 --- a/src/Orm/Zed/Asset/Persistence/SpyAssetStoreQuery.php +++ b/src/Orm/Zed/Asset/Persistence/SpyAssetStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Asset\Persistence; use Spryker\Zed\Asset\Persistence\Propel\AbstractSpyAssetStoreQuery as BaseSpyAssetStoreQuery; diff --git a/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorage.php b/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorage.php index ed66912d7e..1f0bb60d7a 100644 --- a/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorage.php +++ b/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\AssetStorage\Persistence; use Spryker\Zed\AssetStorage\Persistence\Propel\AbstractSpyAssetSlotStorage as BaseSpyAssetSlotStorage; diff --git a/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorageQuery.php b/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorageQuery.php index fe666416ff..99c0f33915 100644 --- a/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorageQuery.php +++ b/src/Orm/Zed/AssetStorage/Persistence/SpyAssetSlotStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\AssetStorage\Persistence; use Spryker\Zed\AssetStorage\Persistence\Propel\AbstractSpyAssetSlotStorageQuery as BaseSpyAssetSlotStorageQuery; diff --git a/src/Orm/Zed/Availability/Persistence/SpyAvailability.php b/src/Orm/Zed/Availability/Persistence/SpyAvailability.php index 926ac965de..51de8736b7 100644 --- a/src/Orm/Zed/Availability/Persistence/SpyAvailability.php +++ b/src/Orm/Zed/Availability/Persistence/SpyAvailability.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Availability\Persistence; use Spryker\Zed\Availability\Persistence\Propel\AbstractSpyAvailability as BaseSpyAvailability; diff --git a/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstract.php b/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstract.php index 5203532fa2..9ee0894db3 100644 --- a/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstract.php +++ b/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstract.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Availability\Persistence; use Spryker\Zed\Availability\Persistence\Propel\AbstractSpyAvailabilityAbstract as BaseSpyAvailabilityAbstract; diff --git a/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstractQuery.php b/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstractQuery.php index 1280bda923..5a7648fdc6 100644 --- a/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstractQuery.php +++ b/src/Orm/Zed/Availability/Persistence/SpyAvailabilityAbstractQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Availability\Persistence; use Spryker\Zed\Availability\Persistence\Propel\AbstractSpyAvailabilityAbstractQuery as BaseSpyAvailabilityAbstractQuery; diff --git a/src/Orm/Zed/Availability/Persistence/SpyAvailabilityQuery.php b/src/Orm/Zed/Availability/Persistence/SpyAvailabilityQuery.php index 16cb8dd2a5..82d5cb1fed 100644 --- a/src/Orm/Zed/Availability/Persistence/SpyAvailabilityQuery.php +++ b/src/Orm/Zed/Availability/Persistence/SpyAvailabilityQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Availability\Persistence; use Spryker\Zed\Availability\Persistence\Propel\AbstractSpyAvailabilityQuery as BaseSpyAvailabilityQuery; diff --git a/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscription.php b/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscription.php index 73c945df2f..33c9094eaf 100644 --- a/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscription.php +++ b/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscription.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\AvailabilityNotification\Persistence; use Spryker\Zed\AvailabilityNotification\Persistence\Propel\AbstractSpyAvailabilityNotificationSubscription as BaseSpyAvailabilityNotificationSubscription; diff --git a/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscriptionQuery.php b/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscriptionQuery.php index ddbbf7c7ef..e0b24692fc 100644 --- a/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscriptionQuery.php +++ b/src/Orm/Zed/AvailabilityNotification/Persistence/SpyAvailabilityNotificationSubscriptionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\AvailabilityNotification\Persistence; use Spryker\Zed\AvailabilityNotification\Persistence\Propel\AbstractSpyAvailabilityNotificationSubscriptionQuery as BaseSpyAvailabilityNotificationSubscriptionQuery; diff --git a/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorage.php b/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorage.php index 903b0311af..cf9373e25e 100644 --- a/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorage.php +++ b/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\AvailabilityStorage\Persistence; use Spryker\Zed\AvailabilityStorage\Persistence\Propel\AbstractSpyAvailabilityStorage; diff --git a/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorageQuery.php b/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorageQuery.php index 8327bd9c62..84ab1fe9cd 100644 --- a/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorageQuery.php +++ b/src/Orm/Zed/AvailabilityStorage/Persistence/SpyAvailabilityStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\AvailabilityStorage\Persistence; use Spryker\Zed\AvailabilityStorage\Persistence\Propel\AbstractSpyAvailabilityStorageQuery; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategory.php b/src/Orm/Zed/Category/Persistence/SpyCategory.php index 9df6240fed..8c51383bc0 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategory.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategory as BaseSpyCategory; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryAttribute.php b/src/Orm/Zed/Category/Persistence/SpyCategoryAttribute.php index ec0e636354..421339fcef 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryAttribute.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryAttribute.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryAttribute as BaseSpyCategoryAttribute; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryAttributeQuery.php b/src/Orm/Zed/Category/Persistence/SpyCategoryAttributeQuery.php index 0159f3199e..f1a83d413f 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryAttributeQuery.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryAttributeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryAttributeQuery as BaseSpyCategoryAttributeQuery; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTable.php b/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTable.php index 46c3c4eef6..30afc17bfe 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTable.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTable.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryClosureTable as BaseSpyCategoryClosureTable; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTableQuery.php b/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTableQuery.php index c5ae3413e7..cce9725309 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTableQuery.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryClosureTableQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryClosureTableQuery as BaseSpyCategoryClosureTableQuery; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryNode.php b/src/Orm/Zed/Category/Persistence/SpyCategoryNode.php index 025da6f02a..47e22c2267 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryNode.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryNode.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryNode as BaseSpyCategoryNode; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryNodeQuery.php b/src/Orm/Zed/Category/Persistence/SpyCategoryNodeQuery.php index 7fa70e1f52..3049ebad92 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryNodeQuery.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryNodeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryNodeQuery as BaseSpyCategoryNodeQuery; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryQuery.php b/src/Orm/Zed/Category/Persistence/SpyCategoryQuery.php index 8bad4699d0..8962c06132 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryQuery.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryQuery as BaseSpyCategoryQuery; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryStore.php b/src/Orm/Zed/Category/Persistence/SpyCategoryStore.php index c7e68d2e6d..b29a664622 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryStore.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryStore as BaseSpyCategoryStore; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryStoreQuery.php b/src/Orm/Zed/Category/Persistence/SpyCategoryStoreQuery.php index b352c6aae9..ad30af3148 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryStoreQuery.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Spryker\Zed\Category\Persistence\Propel\AbstractSpyCategoryStoreQuery as BaseSpyCategoryStoreQuery; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryTemplate.php b/src/Orm/Zed/Category/Persistence/SpyCategoryTemplate.php index 62b61c118f..1d44d01d29 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryTemplate.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryTemplate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Orm\Zed\Category\Persistence\Base\SpyCategoryTemplate as BaseSpyCategoryTemplate; diff --git a/src/Orm/Zed/Category/Persistence/SpyCategoryTemplateQuery.php b/src/Orm/Zed/Category/Persistence/SpyCategoryTemplateQuery.php index a18c89a2e2..593c32ff84 100644 --- a/src/Orm/Zed/Category/Persistence/SpyCategoryTemplateQuery.php +++ b/src/Orm/Zed/Category/Persistence/SpyCategoryTemplateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Category\Persistence; use Orm\Zed\Category\Persistence\Base\SpyCategoryTemplateQuery as BaseSpyCategoryTemplateQuery; diff --git a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImage.php b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImage.php index 107b900ffa..06a9f4bd8c 100644 --- a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImage.php +++ b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImage\Persistence; use Spryker\Zed\CategoryImage\Persistence\Propel\AbstractSpyCategoryImage as BaseSpyCategoryImage; diff --git a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageQuery.php b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageQuery.php index 4c08911df8..83ed3c160a 100644 --- a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageQuery.php +++ b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImage\Persistence; use Spryker\Zed\CategoryImage\Persistence\Propel\AbstractSpyCategoryImageQuery as BaseSpyCategoryImageQuery; diff --git a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSet.php b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSet.php index 5fe795fdc5..81e6af4a0e 100644 --- a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSet.php +++ b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSet.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImage\Persistence; use Spryker\Zed\CategoryImage\Persistence\Propel\AbstractSpyCategoryImageSet as BaseSpyCategoryImageSet; diff --git a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetQuery.php b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetQuery.php index b82c50ee59..7dc7ca868b 100644 --- a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetQuery.php +++ b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImage\Persistence; use Spryker\Zed\CategoryImage\Persistence\Propel\AbstractSpyCategoryImageSetQuery as BaseSpyCategoryImageSetQuery; diff --git a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImage.php b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImage.php index 7254f6f599..6c4864603d 100644 --- a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImage.php +++ b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImage\Persistence; use Spryker\Zed\CategoryImage\Persistence\Propel\AbstractSpyCategoryImageSetToCategoryImage as BaseSpyCategoryImageSetToCategoryImage; diff --git a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImageQuery.php b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImageQuery.php index 4322f417d5..6dc2243094 100644 --- a/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImageQuery.php +++ b/src/Orm/Zed/CategoryImage/Persistence/SpyCategoryImageSetToCategoryImageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImage\Persistence; use Spryker\Zed\CategoryImage\Persistence\Propel\AbstractSpyCategoryImageSetToCategoryImageQuery as BaseSpyCategoryImageSetToCategoryImageQuery; diff --git a/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorage.php b/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorage.php index adcccb42f0..9f78b51258 100644 --- a/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorage.php +++ b/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImageStorage\Persistence; use Spryker\Zed\CategoryImageStorage\Persistence\Propel\AbstractSpyCategoryImageStorage as BaseSpyCategoryImageStorage; diff --git a/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorageQuery.php b/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorageQuery.php index bb237f70c1..c8f4eaaf54 100644 --- a/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorageQuery.php +++ b/src/Orm/Zed/CategoryImageStorage/Persistence/SpyCategoryImageStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryImageStorage\Persistence; use Spryker\Zed\CategoryImageStorage\Persistence\Propel\AbstractSpyCategoryImageStorageQuery as BaseSpyCategoryImageStorageQuery; diff --git a/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearch.php b/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearch.php index 9206e21eda..0c43ab6ea1 100644 --- a/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearch.php +++ b/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryPageSearch\Persistence; use Spryker\Zed\CategoryPageSearch\Persistence\Propel\AbstractSpyCategoryNodePageSearch; diff --git a/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearchQuery.php b/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearchQuery.php index 059b044c4b..ef302d8c2f 100644 --- a/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearchQuery.php +++ b/src/Orm/Zed/CategoryPageSearch/Persistence/SpyCategoryNodePageSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryPageSearch\Persistence; use Spryker\Zed\CategoryPageSearch\Persistence\Propel\AbstractSpyCategoryNodePageSearchQuery; diff --git a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorage.php b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorage.php index ad979f0de9..504cd08522 100644 --- a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorage.php +++ b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryStorage\Persistence; use Spryker\Zed\CategoryStorage\Persistence\Propel\AbstractSpyCategoryNodeStorage; diff --git a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorageQuery.php b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorageQuery.php index 3584e889f0..a29ea8f6b5 100644 --- a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorageQuery.php +++ b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryNodeStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryStorage\Persistence; use Spryker\Zed\CategoryStorage\Persistence\Propel\AbstractSpyCategoryNodeStorageQuery; diff --git a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorage.php b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorage.php index 42f259464b..7a20697113 100644 --- a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorage.php +++ b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryStorage\Persistence; use Spryker\Zed\CategoryStorage\Persistence\Propel\AbstractSpyCategoryTreeStorage; diff --git a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorageQuery.php b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorageQuery.php index 788196ee2a..94dfec066c 100644 --- a/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorageQuery.php +++ b/src/Orm/Zed/CategoryStorage/Persistence/SpyCategoryTreeStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CategoryStorage\Persistence; use Spryker\Zed\CategoryStorage\Persistence\Propel\AbstractSpyCategoryTreeStorageQuery; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMapping.php b/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMapping.php index 904e89e9ee..6c51e3b4ed 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMapping.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMapping.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsGlossaryKeyMapping as BaseSpyCmsGlossaryKeyMapping; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMappingQuery.php b/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMappingQuery.php index 054dcd1168..bfc40559cb 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMappingQuery.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsGlossaryKeyMappingQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsGlossaryKeyMappingQuery as BaseSpyCmsGlossaryKeyMappingQuery; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsPage.php b/src/Orm/Zed/Cms/Persistence/SpyCmsPage.php index 3cbf02ba5f..be09ecc6b0 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsPage.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsPage as BaseSpyCmsPage; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributes.php b/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributes.php index 7bfdf930e9..e28f8779e3 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributes.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsPageLocalizedAttributes as BaseSpyCmsPageLocalizedAttributes; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributesQuery.php b/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributesQuery.php index 5cd0fd0feb..6f00053283 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributesQuery.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsPageLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsPageLocalizedAttributesQuery as BaseSpyCmsPageLocalizedAttributesQuery; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsPageQuery.php b/src/Orm/Zed/Cms/Persistence/SpyCmsPageQuery.php index d87a8fc45f..51f0c1d0b7 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsPageQuery.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsPageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsPageQuery as BaseSpyCmsPageQuery; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsPageStore.php b/src/Orm/Zed/Cms/Persistence/SpyCmsPageStore.php index e3af2e8944..9e1a964728 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsPageStore.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsPageStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsPageStore as BaseSpyCmsPageStore; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsPageStoreQuery.php b/src/Orm/Zed/Cms/Persistence/SpyCmsPageStoreQuery.php index bef4ff46f6..b7697aa85d 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsPageStoreQuery.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsPageStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsPageStoreQuery as BaseSpyCmsPageStoreQuery; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsTemplate.php b/src/Orm/Zed/Cms/Persistence/SpyCmsTemplate.php index 5bca26b3d5..6ebc447742 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsTemplate.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsTemplate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsTemplate as BaseSpyCmsTemplate; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsTemplateQuery.php b/src/Orm/Zed/Cms/Persistence/SpyCmsTemplateQuery.php index cb0c65efe5..e359fdf3ae 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsTemplateQuery.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsTemplateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsTemplateQuery as BaseSpyCmsTemplateQuery; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsVersion.php b/src/Orm/Zed/Cms/Persistence/SpyCmsVersion.php index ac919fb3b0..18e9391578 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsVersion.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsVersion.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsVersion as BaseSpyCmsVersion; diff --git a/src/Orm/Zed/Cms/Persistence/SpyCmsVersionQuery.php b/src/Orm/Zed/Cms/Persistence/SpyCmsVersionQuery.php index 95d2966f11..1a94127f80 100644 --- a/src/Orm/Zed/Cms/Persistence/SpyCmsVersionQuery.php +++ b/src/Orm/Zed/Cms/Persistence/SpyCmsVersionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Cms\Persistence; use Spryker\Zed\Cms\Persistence\Propel\AbstractSpyCmsVersionQuery as BaseSpyCmsVersionQuery; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlock.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlock.php index 6712d82f7b..c1df4e384d 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlock.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlock.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlock as BaseSpyCmsBlock; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMapping.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMapping.php index 391e1f2d40..5c5e3a87eb 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMapping.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMapping.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockGlossaryKeyMapping as BaseSpyCmsBlockGlossaryKeyMapping; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMappingQuery.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMappingQuery.php index fcfe382fbe..eb11411dd2 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMappingQuery.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockGlossaryKeyMappingQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockGlossaryKeyMappingQuery as BaseSpyCmsBlockGlossaryKeyMappingQuery; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockQuery.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockQuery.php index 49a44eee20..981b6fc911 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockQuery.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockQuery as BaseSpyCmsBlockQuery; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStore.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStore.php index 76f64d609e..8f252ae690 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStore.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockStore; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStoreQuery.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStoreQuery.php index 567ea753f1..67301ca3a9 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStoreQuery.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockStoreQuery; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplate.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplate.php index b2b5c0abd1..053a778c24 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplate.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockTemplate as BaseSpyCmsBlockTemplate; diff --git a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplateQuery.php b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplateQuery.php index f693c7a4e5..24a058a72e 100644 --- a/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplateQuery.php +++ b/src/Orm/Zed/CmsBlock/Persistence/SpyCmsBlockTemplateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlock\Persistence; use Spryker\Zed\CmsBlock\Persistence\Propel\AbstractSpyCmsBlockTemplateQuery as BaseSpyCmsBlockTemplateQuery; diff --git a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnector.php b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnector.php index b9e6610f61..47962cecd9 100644 --- a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnector.php +++ b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnector.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockCategoryConnector\Persistence; use Spryker\Zed\CmsBlockCategoryConnector\Persistence\Propel\AbstractSpyCmsBlockCategoryConnector as BaseSpyCmsBlockCategoryConnector; diff --git a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnectorQuery.php b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnectorQuery.php index b4388bc8da..d9087fe546 100644 --- a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnectorQuery.php +++ b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryConnectorQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockCategoryConnector\Persistence; use Spryker\Zed\CmsBlockCategoryConnector\Persistence\Propel\AbstractSpyCmsBlockCategoryConnectorQuery as BaseSpyCmsBlockCategoryConnectorQuery; diff --git a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPosition.php b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPosition.php index 8d916a089d..1830ab47fa 100644 --- a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPosition.php +++ b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPosition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockCategoryConnector\Persistence; use Spryker\Zed\CmsBlockCategoryConnector\Persistence\Propel\AbstractSpyCmsBlockCategoryPosition as BaseSpyCmsBlockCategoryPosition; diff --git a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPositionQuery.php b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPositionQuery.php index 1fe4ba10e8..66161e4a98 100644 --- a/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPositionQuery.php +++ b/src/Orm/Zed/CmsBlockCategoryConnector/Persistence/SpyCmsBlockCategoryPositionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockCategoryConnector\Persistence; use Spryker\Zed\CmsBlockCategoryConnector\Persistence\Propel\AbstractSpyCmsBlockCategoryPositionQuery as BaseSpyCmsBlockCategoryPositionQuery; diff --git a/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorage.php b/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorage.php index 04e42048bd..912ce0007b 100644 --- a/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorage.php +++ b/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockCategoryStorage\Persistence; use Spryker\Zed\CmsBlockCategoryStorage\Persistence\Propel\AbstractSpyCmsBlockCategoryStorage; diff --git a/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorageQuery.php b/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorageQuery.php index 83ce010085..f60c127110 100644 --- a/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorageQuery.php +++ b/src/Orm/Zed/CmsBlockCategoryStorage/Persistence/SpyCmsBlockCategoryStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockCategoryStorage\Persistence; use Spryker\Zed\CmsBlockCategoryStorage\Persistence\Propel\AbstractSpyCmsBlockCategoryStorageQuery; diff --git a/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnector.php b/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnector.php index 722771ed86..10dfc43b99 100644 --- a/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnector.php +++ b/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnector.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockProductConnector\Persistence; use Spryker\Zed\CmsBlockProductConnector\Persistence\Propel\AbstractSpyCmsBlockProductConnector as BaseSpyCmsBlockProductConnector; diff --git a/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnectorQuery.php b/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnectorQuery.php index beea91fd48..40d4ca9d10 100644 --- a/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnectorQuery.php +++ b/src/Orm/Zed/CmsBlockProductConnector/Persistence/SpyCmsBlockProductConnectorQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockProductConnector\Persistence; use Spryker\Zed\CmsBlockProductConnector\Persistence\Propel\AbstractSpyCmsBlockProductConnectorQuery as BaseSpyCmsBlockProductConnectorQuery; diff --git a/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorage.php b/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorage.php index 32dc892828..fb1de9f7d2 100644 --- a/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorage.php +++ b/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockProductStorage\Persistence; use Spryker\Zed\CmsBlockProductStorage\Persistence\Propel\AbstractSpyCmsBlockProductStorage; diff --git a/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorageQuery.php b/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorageQuery.php index a223a94112..166bc14c43 100644 --- a/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorageQuery.php +++ b/src/Orm/Zed/CmsBlockProductStorage/Persistence/SpyCmsBlockProductStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockProductStorage\Persistence; use Spryker\Zed\CmsBlockProductStorage\Persistence\Propel\AbstractSpyCmsBlockProductStorageQuery; diff --git a/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorage.php b/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorage.php index 088baea465..0d35df96c3 100644 --- a/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorage.php +++ b/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockStorage\Persistence; use Spryker\Zed\CmsBlockStorage\Persistence\Propel\AbstractSpyCmsBlockStorage as BaseSpyCmsBlockStorage; diff --git a/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorageQuery.php b/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorageQuery.php index 51a667e4c0..4457e525d2 100644 --- a/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorageQuery.php +++ b/src/Orm/Zed/CmsBlockStorage/Persistence/SpyCmsBlockStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsBlockStorage\Persistence; use Spryker\Zed\CmsBlockStorage\Persistence\Propel\AbstractSpyCmsBlockStorageQuery as BaseSpyCmsBlockStorageQuery; diff --git a/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearch.php b/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearch.php index b10ec7cf47..9ba4b61078 100644 --- a/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearch.php +++ b/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsPageSearch\Persistence; use Spryker\Zed\CmsPageSearch\Persistence\Propel\AbstractSpyCmsPageSearch; diff --git a/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearchQuery.php b/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearchQuery.php index 2e7fb8f168..ddda25dfb1 100644 --- a/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearchQuery.php +++ b/src/Orm/Zed/CmsPageSearch/Persistence/SpyCmsPageSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsPageSearch\Persistence; use Spryker\Zed\CmsPageSearch\Persistence\Propel\AbstractSpyCmsPageSearchQuery; diff --git a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlot.php b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlot.php index f6d1bc1356..cb5212e537 100644 --- a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlot.php +++ b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlot.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlot\Persistence; use Spryker\Zed\CmsSlot\Persistence\Propel\AbstractSpyCmsSlot as BaseSpyCmsSlot; diff --git a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotQuery.php b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotQuery.php index ed419f63ea..418bb2e9a7 100644 --- a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotQuery.php +++ b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlot\Persistence; use Spryker\Zed\CmsSlot\Persistence\Propel\AbstractSpyCmsSlotQuery as BaseSpyCmsSlotQuery; diff --git a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplate.php b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplate.php index 37a403fd1f..ed34b09aa4 100644 --- a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplate.php +++ b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlot\Persistence; use Spryker\Zed\CmsSlot\Persistence\Propel\AbstractSpyCmsSlotTemplate as BaseSpyCmsSlotTemplate; diff --git a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplateQuery.php b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplateQuery.php index e5d4b44316..0c94b970f0 100644 --- a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplateQuery.php +++ b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotTemplateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlot\Persistence; use Spryker\Zed\CmsSlot\Persistence\Propel\AbstractSpyCmsSlotTemplateQuery as BaseSpyCmsSlotTemplateQuery; diff --git a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplate.php b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplate.php index f4cae90762..f60471c875 100644 --- a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplate.php +++ b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlot\Persistence; use Spryker\Zed\CmsSlot\Persistence\Propel\AbstractSpyCmsSlotToCmsSlotTemplate as BaseSpyCmsSlotToCmsSlotTemplate; diff --git a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplateQuery.php b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplateQuery.php index f177961b07..48101f88ae 100644 --- a/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplateQuery.php +++ b/src/Orm/Zed/CmsSlot/Persistence/SpyCmsSlotToCmsSlotTemplateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlot\Persistence; use Spryker\Zed\CmsSlot\Persistence\Propel\AbstractSpyCmsSlotToCmsSlotTemplateQuery as BaseSpyCmsSlotToCmsSlotTemplateQuery; diff --git a/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlock.php b/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlock.php index 1dd719c234..b483372fd5 100644 --- a/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlock.php +++ b/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlock.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlotBlock\Persistence; use Spryker\Zed\CmsSlotBlock\Persistence\Propel\AbstractSpyCmsSlotBlock as BaseSpyCmsSlotBlock; diff --git a/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlockQuery.php b/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlockQuery.php index f751a33109..7669d3df20 100644 --- a/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlockQuery.php +++ b/src/Orm/Zed/CmsSlotBlock/Persistence/SpyCmsSlotBlockQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlotBlock\Persistence; use Spryker\Zed\CmsSlotBlock\Persistence\Propel\AbstractSpyCmsSlotBlockQuery as BaseSpyCmsSlotBlockQuery; diff --git a/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorage.php b/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorage.php index 2b0a2378fd..27b2425cea 100644 --- a/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorage.php +++ b/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlotBlockStorage\Persistence; use Spryker\Zed\CmsSlotBlockStorage\Persistence\Propel\AbstractSpyCmsSlotBlockStorage as BaseSpyCmsSlotBlockStorage; diff --git a/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorageQuery.php b/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorageQuery.php index 3d9d71bada..e1b3770c73 100644 --- a/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorageQuery.php +++ b/src/Orm/Zed/CmsSlotBlockStorage/Persistence/SpyCmsSlotBlockStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlotBlockStorage\Persistence; use Spryker\Zed\CmsSlotBlockStorage\Persistence\Propel\AbstractSpyCmsSlotBlockStorageQuery as BaseSpyCmsSlotBlockStorageQuery; diff --git a/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorage.php b/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorage.php index ece23b46aa..1dc6a1e613 100644 --- a/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorage.php +++ b/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlotStorage\Persistence; use Spryker\Zed\CmsSlotStorage\Persistence\Propel\AbstractSpyCmsSlotStorage as BaseSpyCmsSlotStorage; diff --git a/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorageQuery.php b/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorageQuery.php index 177859a917..c714a13428 100644 --- a/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorageQuery.php +++ b/src/Orm/Zed/CmsSlotStorage/Persistence/SpyCmsSlotStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsSlotStorage\Persistence; use Spryker\Zed\CmsSlotStorage\Persistence\Propel\AbstractSpyCmsSlotStorageQuery as BaseSpyCmsSlotStorageQuery; diff --git a/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorage.php b/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorage.php index 2511e39b96..808a6a52c7 100644 --- a/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorage.php +++ b/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsStorage\Persistence; use Spryker\Zed\CmsStorage\Persistence\Propel\AbstractSpyCmsPageStorage; diff --git a/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorageQuery.php b/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorageQuery.php index 404b773d71..f4b3797dea 100644 --- a/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorageQuery.php +++ b/src/Orm/Zed/CmsStorage/Persistence/SpyCmsPageStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CmsStorage\Persistence; use Spryker\Zed\CmsStorage\Persistence\Propel\AbstractSpyCmsPageStorageQuery; diff --git a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplate.php b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplate.php index 3be05bd8e3..1872db42dd 100644 --- a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplate.php +++ b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundle\Persistence; use Spryker\Zed\ConfigurableBundle\Persistence\Propel\AbstractSpyConfigurableBundleTemplate as BaseSpyConfigurableBundleTemplate; diff --git a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateQuery.php b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateQuery.php index a8cb1d4ec9..c09e4780ee 100644 --- a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateQuery.php +++ b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundle\Persistence; use Spryker\Zed\ConfigurableBundle\Persistence\Propel\AbstractSpyConfigurableBundleTemplateQuery as BaseSpyConfigurableBundleTemplateQuery; diff --git a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlot.php b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlot.php index 26114a2f10..baeed96fae 100644 --- a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlot.php +++ b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlot.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundle\Persistence; use Spryker\Zed\ConfigurableBundle\Persistence\Propel\AbstractSpyConfigurableBundleTemplateSlot as BaseSpyConfigurableBundleTemplateSlot; diff --git a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlotQuery.php b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlotQuery.php index 6e375f8ff3..86e3282278 100644 --- a/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlotQuery.php +++ b/src/Orm/Zed/ConfigurableBundle/Persistence/SpyConfigurableBundleTemplateSlotQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundle\Persistence; use Spryker\Zed\ConfigurableBundle\Persistence\Propel\AbstractSpyConfigurableBundleTemplateSlotQuery as BaseSpyConfigurableBundleTemplateSlotQuery; diff --git a/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearch.php b/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearch.php index 1c038914c3..629f260c18 100644 --- a/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearch.php +++ b/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundlePageSearch\Persistence; use Spryker\Zed\ConfigurableBundlePageSearch\Persistence\Propel\AbstractSpyConfigurableBundleTemplatePageSearch; diff --git a/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearchQuery.php b/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearchQuery.php index 0c99e2e5a5..21b962d164 100644 --- a/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearchQuery.php +++ b/src/Orm/Zed/ConfigurableBundlePageSearch/Persistence/SpyConfigurableBundleTemplatePageSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundlePageSearch\Persistence; use Spryker\Zed\ConfigurableBundlePageSearch\Persistence\Propel\AbstractSpyConfigurableBundleTemplatePageSearchQuery; diff --git a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorage.php b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorage.php index d4eb55f706..1bbb70df84 100644 --- a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorage.php +++ b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundleStorage\Persistence; use Spryker\Zed\ConfigurableBundleStorage\Persistence\Propel\AbstractSpyConfigurableBundleTemplateImageStorage as BaseSpyConfigurableBundleTemplateImageStorage; diff --git a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorageQuery.php b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorageQuery.php index c8c8578a82..e1b3c1bd39 100644 --- a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorageQuery.php +++ b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateImageStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundleStorage\Persistence; use Spryker\Zed\ConfigurableBundleStorage\Persistence\Propel\AbstractSpyConfigurableBundleTemplateImageStorageQuery as BaseSpyConfigurableBundleTemplateImageStorageQuery; diff --git a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorage.php b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorage.php index a162da854b..6fccc5c429 100644 --- a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorage.php +++ b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundleStorage\Persistence; use Spryker\Zed\ConfigurableBundleStorage\Persistence\Propel\AbstractSpyConfigurableBundleTemplateStorage as BaseSpyConfigurableBundleTemplateStorage; diff --git a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorageQuery.php b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorageQuery.php index f3e1abcbea..5d21cfdcad 100644 --- a/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorageQuery.php +++ b/src/Orm/Zed/ConfigurableBundleStorage/Persistence/SpyConfigurableBundleTemplateStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ConfigurableBundleStorage\Persistence; use Spryker\Zed\ConfigurableBundleStorage\Persistence\Propel\AbstractSpyConfigurableBundleTemplateStorageQuery as BaseSpyConfigurableBundleTemplateStorageQuery; diff --git a/src/Orm/Zed/Content/Persistence/SpyContent.php b/src/Orm/Zed/Content/Persistence/SpyContent.php index e0da085d72..2d68108cd5 100644 --- a/src/Orm/Zed/Content/Persistence/SpyContent.php +++ b/src/Orm/Zed/Content/Persistence/SpyContent.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Content\Persistence; use Spryker\Zed\Content\Persistence\Propel\AbstractSpyContent as BaseSpyContent; diff --git a/src/Orm/Zed/Content/Persistence/SpyContentLocalized.php b/src/Orm/Zed/Content/Persistence/SpyContentLocalized.php index c28129204c..02e9704f73 100644 --- a/src/Orm/Zed/Content/Persistence/SpyContentLocalized.php +++ b/src/Orm/Zed/Content/Persistence/SpyContentLocalized.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Content\Persistence; use Spryker\Zed\Content\Persistence\Propel\AbstractSpyContentLocalized as BaseSpyContentLocalized; diff --git a/src/Orm/Zed/Content/Persistence/SpyContentLocalizedQuery.php b/src/Orm/Zed/Content/Persistence/SpyContentLocalizedQuery.php index cca21e6854..d1eab94d1e 100644 --- a/src/Orm/Zed/Content/Persistence/SpyContentLocalizedQuery.php +++ b/src/Orm/Zed/Content/Persistence/SpyContentLocalizedQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Content\Persistence; use Spryker\Zed\Content\Persistence\Propel\AbstractSpyContentLocalizedQuery as BaseSpyContentLocalizedQuery; diff --git a/src/Orm/Zed/Content/Persistence/SpyContentQuery.php b/src/Orm/Zed/Content/Persistence/SpyContentQuery.php index 574d6ceb1e..0088046125 100644 --- a/src/Orm/Zed/Content/Persistence/SpyContentQuery.php +++ b/src/Orm/Zed/Content/Persistence/SpyContentQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Content\Persistence; use Spryker\Zed\Content\Persistence\Propel\AbstractSpyContentQuery as BaseSpyContentQuery; diff --git a/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorage.php b/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorage.php index 453f8ab660..f9f8c94a4b 100644 --- a/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorage.php +++ b/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ContentStorage\Persistence; use Spryker\Zed\ContentStorage\Persistence\Propel\AbstractSpyContentStorage as BaseSpyContentStorage; diff --git a/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorageQuery.php b/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorageQuery.php index 8bdb379d4b..5579e2e1f0 100644 --- a/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorageQuery.php +++ b/src/Orm/Zed/ContentStorage/Persistence/SpyContentStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ContentStorage\Persistence; use Spryker\Zed\ContentStorage\Persistence\Propel\AbstractSpyContentStorageQuery as BaseSpyContentStorageQuery; diff --git a/src/Orm/Zed/Country/Persistence/SpyCountry.php b/src/Orm/Zed/Country/Persistence/SpyCountry.php index 8c68106c8e..56bca1787a 100644 --- a/src/Orm/Zed/Country/Persistence/SpyCountry.php +++ b/src/Orm/Zed/Country/Persistence/SpyCountry.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Country\Persistence; use Spryker\Zed\Country\Persistence\Propel\AbstractSpyCountry as BaseSpyCountry; diff --git a/src/Orm/Zed/Country/Persistence/SpyCountryQuery.php b/src/Orm/Zed/Country/Persistence/SpyCountryQuery.php index 1a9c7197b3..763d7b2d1a 100644 --- a/src/Orm/Zed/Country/Persistence/SpyCountryQuery.php +++ b/src/Orm/Zed/Country/Persistence/SpyCountryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Country\Persistence; use Spryker\Zed\Country\Persistence\Propel\AbstractSpyCountryQuery as BaseSpyCountryQuery; diff --git a/src/Orm/Zed/Country/Persistence/SpyCountryStore.php b/src/Orm/Zed/Country/Persistence/SpyCountryStore.php index 9c7a71bfd1..a7ac84e0d6 100644 --- a/src/Orm/Zed/Country/Persistence/SpyCountryStore.php +++ b/src/Orm/Zed/Country/Persistence/SpyCountryStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Country\Persistence; use Spryker\Zed\Country\Persistence\Propel\AbstractSpyCountryStore as BaseSpyCountryStore; diff --git a/src/Orm/Zed/Country/Persistence/SpyCountryStoreQuery.php b/src/Orm/Zed/Country/Persistence/SpyCountryStoreQuery.php index c2b0175f20..b659d5a48e 100644 --- a/src/Orm/Zed/Country/Persistence/SpyCountryStoreQuery.php +++ b/src/Orm/Zed/Country/Persistence/SpyCountryStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Country\Persistence; use Spryker\Zed\Country\Persistence\Propel\AbstractSpyCountryStoreQuery as BaseSpyCountryStoreQuery; diff --git a/src/Orm/Zed/Country/Persistence/SpyRegion.php b/src/Orm/Zed/Country/Persistence/SpyRegion.php index 43e6b05e2c..bae392b9fa 100644 --- a/src/Orm/Zed/Country/Persistence/SpyRegion.php +++ b/src/Orm/Zed/Country/Persistence/SpyRegion.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Country\Persistence; use Spryker\Zed\Country\Persistence\Propel\AbstractSpyRegion as BaseSpyRegion; diff --git a/src/Orm/Zed/Country/Persistence/SpyRegionQuery.php b/src/Orm/Zed/Country/Persistence/SpyRegionQuery.php index d9d8842a5c..f558abc1a3 100644 --- a/src/Orm/Zed/Country/Persistence/SpyRegionQuery.php +++ b/src/Orm/Zed/Country/Persistence/SpyRegionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Country\Persistence; use Spryker\Zed\Country\Persistence\Propel\AbstractSpyRegionQuery as BaseSpyRegionQuery; diff --git a/src/Orm/Zed/Currency/Persistence/SpyCurrency.php b/src/Orm/Zed/Currency/Persistence/SpyCurrency.php index 505f3789a8..b11a9dffc7 100644 --- a/src/Orm/Zed/Currency/Persistence/SpyCurrency.php +++ b/src/Orm/Zed/Currency/Persistence/SpyCurrency.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Currency\Persistence; use Spryker\Zed\Currency\Persistence\Propel\AbstractSpyCurrency as BaseSpyCurrency; diff --git a/src/Orm/Zed/Currency/Persistence/SpyCurrencyQuery.php b/src/Orm/Zed/Currency/Persistence/SpyCurrencyQuery.php index bf9890284a..b07baadd70 100644 --- a/src/Orm/Zed/Currency/Persistence/SpyCurrencyQuery.php +++ b/src/Orm/Zed/Currency/Persistence/SpyCurrencyQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Currency\Persistence; use Spryker\Zed\Currency\Persistence\Propel\AbstractSpyCurrencyQuery as BaseSpyCurrencyQuery; diff --git a/src/Orm/Zed/Currency/Persistence/SpyCurrencyStore.php b/src/Orm/Zed/Currency/Persistence/SpyCurrencyStore.php index e95350ad45..4f1a49726c 100644 --- a/src/Orm/Zed/Currency/Persistence/SpyCurrencyStore.php +++ b/src/Orm/Zed/Currency/Persistence/SpyCurrencyStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Currency\Persistence; use Spryker\Zed\Currency\Persistence\Propel\AbstractSpyCurrencyStore as BaseSpyCurrencyStore; diff --git a/src/Orm/Zed/Currency/Persistence/SpyCurrencyStoreQuery.php b/src/Orm/Zed/Currency/Persistence/SpyCurrencyStoreQuery.php index 89949a64a7..660492a565 100644 --- a/src/Orm/Zed/Currency/Persistence/SpyCurrencyStoreQuery.php +++ b/src/Orm/Zed/Currency/Persistence/SpyCurrencyStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Currency\Persistence; use Spryker\Zed\Currency\Persistence\Propel\AbstractSpyCurrencyStoreQuery as BaseSpyCurrencyStoreQuery; diff --git a/src/Orm/Zed/Customer/Persistence/SpyCustomer.php b/src/Orm/Zed/Customer/Persistence/SpyCustomer.php index 4381e1c015..7a7527f2db 100644 --- a/src/Orm/Zed/Customer/Persistence/SpyCustomer.php +++ b/src/Orm/Zed/Customer/Persistence/SpyCustomer.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Customer\Persistence; use Spryker\Zed\Customer\Persistence\Propel\AbstractSpyCustomer as BaseSpyCustomer; diff --git a/src/Orm/Zed/Customer/Persistence/SpyCustomerAddress.php b/src/Orm/Zed/Customer/Persistence/SpyCustomerAddress.php index 6ca75aa4b0..75ea6f43c7 100644 --- a/src/Orm/Zed/Customer/Persistence/SpyCustomerAddress.php +++ b/src/Orm/Zed/Customer/Persistence/SpyCustomerAddress.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Customer\Persistence; use Spryker\Zed\Customer\Persistence\Propel\AbstractSpyCustomerAddress as BaseSpyCustomerAddress; diff --git a/src/Orm/Zed/Customer/Persistence/SpyCustomerAddressQuery.php b/src/Orm/Zed/Customer/Persistence/SpyCustomerAddressQuery.php index f3a1aa0c42..87543ff015 100644 --- a/src/Orm/Zed/Customer/Persistence/SpyCustomerAddressQuery.php +++ b/src/Orm/Zed/Customer/Persistence/SpyCustomerAddressQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Customer\Persistence; use Spryker\Zed\Customer\Persistence\Propel\AbstractSpyCustomerAddressQuery as BaseSpyCustomerAddressQuery; diff --git a/src/Orm/Zed/Customer/Persistence/SpyCustomerQuery.php b/src/Orm/Zed/Customer/Persistence/SpyCustomerQuery.php index 36cde493fb..e55b0d88d7 100644 --- a/src/Orm/Zed/Customer/Persistence/SpyCustomerQuery.php +++ b/src/Orm/Zed/Customer/Persistence/SpyCustomerQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Customer\Persistence; use Spryker\Zed\Customer\Persistence\Propel\AbstractSpyCustomerQuery as BaseSpyCustomerQuery; diff --git a/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccess.php b/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccess.php index 98519555d0..5db493f7fd 100644 --- a/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccess.php +++ b/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccess.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerAccess\Persistence; use Spryker\Zed\CustomerAccess\Persistence\Propel\AbstractSpyUnauthenticatedCustomerAccess; diff --git a/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccessQuery.php b/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccessQuery.php index 19f81d656f..73e649689e 100644 --- a/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccessQuery.php +++ b/src/Orm/Zed/CustomerAccess/Persistence/SpyUnauthenticatedCustomerAccessQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerAccess\Persistence; use Spryker\Zed\CustomerAccess\Persistence\Propel\AbstractSpyUnauthenticatedCustomerAccessQuery; diff --git a/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorage.php b/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorage.php index 86da7a7e58..7c72e5d65f 100644 --- a/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorage.php +++ b/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerAccessStorage\Persistence; use Spryker\Zed\CustomerAccessStorage\Persistence\Propel\AbstractSpyUnauthenticatedCustomerAccessStorage; diff --git a/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorageQuery.php b/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorageQuery.php index 19a50eee15..1890fadcf2 100644 --- a/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorageQuery.php +++ b/src/Orm/Zed/CustomerAccessStorage/Persistence/SpyUnauthenticatedCustomerAccessStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerAccessStorage\Persistence; use Spryker\Zed\CustomerAccessStorage\Persistence\Propel\AbstractSpyUnauthenticatedCustomerAccessStorageQuery; diff --git a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroup.php b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroup.php index 0446d04bb2..4d47914922 100644 --- a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroup.php +++ b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerGroup\Persistence; use Spryker\Zed\CustomerGroup\Persistence\Propel\AbstractSpyCustomerGroup as BaseSpyCustomerGroup; diff --git a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupQuery.php b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupQuery.php index 9df6e44862..2a56d8eea7 100644 --- a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupQuery.php +++ b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerGroup\Persistence; use Spryker\Zed\CustomerGroup\Persistence\Propel\AbstractSpyCustomerGroupQuery as BaseSpyCustomerGroupQuery; diff --git a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomer.php b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomer.php index d0289b615e..38d77f098c 100644 --- a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomer.php +++ b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomer.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerGroup\Persistence; use Spryker\Zed\CustomerGroup\Persistence\Propel\AbstractSpyCustomerGroupToCustomer as BaseSpyCustomerGroupToCustomer; diff --git a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomerQuery.php b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomerQuery.php index 535c3bf6ff..0abe62f462 100644 --- a/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomerQuery.php +++ b/src/Orm/Zed/CustomerGroup/Persistence/SpyCustomerGroupToCustomerQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerGroup\Persistence; use Spryker\Zed\CustomerGroup\Persistence\Propel\AbstractSpyCustomerGroupToCustomerQuery as BaseSpyCustomerGroupToCustomerQuery; diff --git a/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNote.php b/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNote.php index f25941b7cd..362520e91f 100644 --- a/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNote.php +++ b/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNote.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerNote\Persistence; use Spryker\Zed\CustomerNote\Persistence\Propel\AbstractSpyCustomerNote as BaseSpyCustomerNote; diff --git a/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNoteQuery.php b/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNoteQuery.php index e266e5e1c6..f38595cac0 100644 --- a/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNoteQuery.php +++ b/src/Orm/Zed/CustomerNote/Persistence/SpyCustomerNoteQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerNote\Persistence; use Spryker\Zed\CustomerNote\Persistence\Propel\AbstractSpyCustomerNoteQuery as BaseSpyCustomerNoteQuery; diff --git a/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorage.php b/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorage.php index 9f74f6ee96..accac21751 100644 --- a/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorage.php +++ b/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerStorage\Persistence; use Spryker\Zed\CustomerStorage\Persistence\Propel\AbstractSpyCustomerInvalidatedStorage as BaseSpyCustomerInvalidatedStorage; diff --git a/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorageQuery.php b/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorageQuery.php index 602ed395bc..6593da8d9d 100644 --- a/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorageQuery.php +++ b/src/Orm/Zed/CustomerStorage/Persistence/SpyCustomerInvalidatedStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\CustomerStorage\Persistence; use Spryker\Zed\CustomerStorage\Persistence\Propel\AbstractSpyCustomerInvalidatedStorageQuery as BaseSpyCustomerInvalidatedStorageQuery; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscount.php b/src/Orm/Zed/Discount/Persistence/SpyDiscount.php index f1aabd54bb..d12c23c5ef 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscount.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscount.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscount as BaseSpyDiscount; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountAmount.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountAmount.php index 48770000a2..8cbf439d98 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountAmount.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountAmount.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountAmount as BaseSpyDiscountAmount; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountAmountQuery.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountAmountQuery.php index c15e3af147..32503bd6d3 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountAmountQuery.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountAmountQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountAmountQuery as BaseSpyDiscountAmountQuery; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountQuery.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountQuery.php index 0cf1760df3..374846204d 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountQuery.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountQuery as BaseSpyDiscountQuery; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountStore.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountStore.php index 053f1533a6..00aa8ee2b6 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountStore.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountStore; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountStoreQuery.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountStoreQuery.php index 8d2b38ae43..43c23a6b91 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountStoreQuery.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountStoreQuery; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucher.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucher.php index 9011f368e3..3a8ddb4b08 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucher.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucher.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountVoucher as BaseSpyDiscountVoucher; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPool.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPool.php index 1353549793..afce5224e6 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPool.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPool.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountVoucherPool as BaseSpyDiscountVoucherPool; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPoolQuery.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPoolQuery.php index a68ba20971..f3bc945317 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPoolQuery.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherPoolQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountVoucherPoolQuery as BaseSpyDiscountVoucherPoolQuery; diff --git a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherQuery.php b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherQuery.php index ceda12cd23..70133223c0 100644 --- a/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherQuery.php +++ b/src/Orm/Zed/Discount/Persistence/SpyDiscountVoucherQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Discount\Persistence; use Spryker\Zed\Discount\Persistence\Propel\AbstractSpyDiscountVoucherQuery as BaseSpyDiscountVoucherQuery; diff --git a/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotion.php b/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotion.php index 7552f3ffd5..66df8e1e8c 100644 --- a/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotion.php +++ b/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotion.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DiscountPromotion\Persistence; use Spryker\Zed\DiscountPromotion\Persistence\Propel\AbstractSpyDiscountPromotion as BaseSpyDiscountPromotion; diff --git a/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotionQuery.php b/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotionQuery.php index e6f47cccd9..dae253dad2 100644 --- a/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotionQuery.php +++ b/src/Orm/Zed/DiscountPromotion/Persistence/SpyDiscountPromotionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DiscountPromotion\Persistence; use Spryker\Zed\DiscountPromotion\Persistence\Propel\AbstractSpyDiscountPromotionQuery as BaseSpyDiscountPromotionQuery; diff --git a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfiguration.php b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfiguration.php index 95faed99e3..e419871f60 100644 --- a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfiguration.php +++ b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfiguration.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DynamicEntity\Persistence; use Spryker\Zed\DynamicEntity\Persistence\Propel\AbstractSpyDynamicEntityConfiguration as BaseSpyDynamicEntityConfiguration; diff --git a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationQuery.php b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationQuery.php index 05f01b7077..ac19d1f6f9 100644 --- a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationQuery.php +++ b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DynamicEntity\Persistence; use Spryker\Zed\DynamicEntity\Persistence\Propel\AbstractSpyDynamicEntityConfigurationQuery as BaseSpyDynamicEntityConfigurationQuery; diff --git a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelation.php b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelation.php index 3f2f8aac18..e911e99574 100644 --- a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelation.php +++ b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DynamicEntity\Persistence; use Spryker\Zed\DynamicEntity\Persistence\Propel\AbstractSpyDynamicEntityConfigurationRelation as BaseSpyDynamicEntityConfigurationRelation; diff --git a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMapping.php b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMapping.php index 923d877f55..7d7429f207 100644 --- a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMapping.php +++ b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMapping.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DynamicEntity\Persistence; use Spryker\Zed\DynamicEntity\Persistence\Propel\AbstractSpyDynamicEntityConfigurationRelationFieldMapping as BaseSpyDynamicEntityConfigurationRelationFieldMapping; diff --git a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMappingQuery.php b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMappingQuery.php index 9a3db91897..bbd7aa0f0b 100644 --- a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMappingQuery.php +++ b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationFieldMappingQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DynamicEntity\Persistence; use Spryker\Zed\DynamicEntity\Persistence\Propel\AbstractSpyDynamicEntityConfigurationRelationFieldMappingQuery as BaseSpyDynamicEntityConfigurationRelationFieldMappingQuery; diff --git a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationQuery.php b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationQuery.php index 48a74b2de4..5cc9aa4b39 100644 --- a/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationQuery.php +++ b/src/Orm/Zed/DynamicEntity/Persistence/SpyDynamicEntityConfigurationRelationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\DynamicEntity\Persistence; use Spryker\Zed\DynamicEntity\Persistence\Propel\AbstractSpyDynamicEntityConfigurationRelationQuery as BaseSpyDynamicEntityConfigurationRelationQuery; diff --git a/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChange.php b/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChange.php index 85a85862bf..eeb94f8e29 100644 --- a/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChange.php +++ b/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChange.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\EventBehavior\Persistence; use Spryker\Zed\EventBehavior\Persistence\Propel\AbstractSpyEventBehaviorEntityChange; diff --git a/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChangeQuery.php b/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChangeQuery.php index 2363750d6a..4fe092bbd2 100644 --- a/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChangeQuery.php +++ b/src/Orm/Zed/EventBehavior/Persistence/SpyEventBehaviorEntityChangeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\EventBehavior\Persistence; use Spryker\Zed\EventBehavior\Persistence\Propel\AbstractSpyEventBehaviorEntityChangeQuery; diff --git a/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItem.php b/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItem.php index 18b8b697c1..66474a68ff 100644 --- a/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItem.php +++ b/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ExampleStateMachine\Persistence; use Orm\Zed\ExampleStateMachine\Persistence\Base\ExampleStateMachineItem as BaseExampleStateMachineItem; diff --git a/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItemQuery.php b/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItemQuery.php index eaf8e3fe56..32322f50d3 100644 --- a/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItemQuery.php +++ b/src/Orm/Zed/ExampleStateMachine/Persistence/ExampleStateMachineItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ExampleStateMachine\Persistence; use Orm\Zed\ExampleStateMachine\Persistence\Base\ExampleStateMachineItemQuery as BaseExampleStateMachineItemQuery; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFile.php b/src/Orm/Zed/FileManager/Persistence/SpyFile.php index 885a41ac27..e40d1ceb2f 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFile.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFile.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyFile as BaseSpyFile; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectory.php b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectory.php index 12c3da74a9..cab95bacb3 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectory.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Spryker\Zed\FileManager\Persistence\Propel\AbstractSpyFileDirectory as BaseSpyFileDirectory; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributes.php b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributes.php index c2a306beee..a13142abbe 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributes.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Spryker\Zed\FileManager\Persistence\Propel\AbstractSpyFileDirectoryLocalizedAttributes as BaseSpyFileDirectoryLocalizedAttributes; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributesQuery.php b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributesQuery.php index adf26cd46b..b5500bf1c1 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributesQuery.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyFileDirectoryLocalizedAttributesQuery as BaseSpyFileDirectoryLocalizedAttributesQuery; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryQuery.php b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryQuery.php index 51a26fe494..29c6802638 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryQuery.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileDirectoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyFileDirectoryQuery as BaseSpyFileDirectoryQuery; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileInfo.php b/src/Orm/Zed/FileManager/Persistence/SpyFileInfo.php index 5d45414dee..5a1953d25a 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileInfo.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileInfo.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Spryker\Zed\FileManager\Persistence\Propel\AbstractSpyFileInfo as BaseSpyFileInfo; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileInfoQuery.php b/src/Orm/Zed/FileManager/Persistence/SpyFileInfoQuery.php index f24f4b42b5..e9ff9c3556 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileInfoQuery.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileInfoQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyFileInfoQuery as BaseSpyFileInfoQuery; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributes.php b/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributes.php index 8e3ee1d655..885c033afb 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributes.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Spryker\Zed\FileManager\Persistence\Propel\AbstractSpyFileLocalizedAttributes as BaseSpyFileLocalizedAttributes; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributesQuery.php b/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributesQuery.php index 0413e0ce14..1b0d6e5735 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributesQuery.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyFileLocalizedAttributesQuery as BaseSpyFileLocalizedAttributesQuery; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyFileQuery.php b/src/Orm/Zed/FileManager/Persistence/SpyFileQuery.php index dc3e35f833..a2e810e852 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyFileQuery.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyFileQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyFileQuery as BaseSpyFileQuery; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyMimeType.php b/src/Orm/Zed/FileManager/Persistence/SpyMimeType.php index 80f18cce89..5a1e72292b 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyMimeType.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyMimeType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Spryker\Zed\FileManager\Persistence\Propel\AbstractSpyMimeType as BaseSpyMimeType; diff --git a/src/Orm/Zed/FileManager/Persistence/SpyMimeTypeQuery.php b/src/Orm/Zed/FileManager/Persistence/SpyMimeTypeQuery.php index 5ad6d3f28c..3c48436bef 100644 --- a/src/Orm/Zed/FileManager/Persistence/SpyMimeTypeQuery.php +++ b/src/Orm/Zed/FileManager/Persistence/SpyMimeTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManager\Persistence; use Orm\Zed\FileManager\Persistence\Base\SpyMimeTypeQuery as BaseSpyMimeTypeQuery; diff --git a/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorage.php b/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorage.php index 06d34817bd..451fd9f71e 100644 --- a/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorage.php +++ b/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManagerStorage\Persistence; use Spryker\Zed\FileManagerStorage\Persistence\Propel\AbstractSpyFileStorage as BaseSpyFileStorage; diff --git a/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorageQuery.php b/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorageQuery.php index 562fa8a4e3..6938ae54f2 100644 --- a/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorageQuery.php +++ b/src/Orm/Zed/FileManagerStorage/Persistence/SpyFileStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\FileManagerStorage\Persistence; use Orm\Zed\FileManagerStorage\Persistence\Base\SpyFileStorageQuery as BaseSpyFileStorageQuery; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCard.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCard.php index 0efb33da43..1c2e173157 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCard.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCard.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCard as BaseSpyGiftCard; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfiguration.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfiguration.php index 669d972216..3beb86a17e 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfiguration.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfiguration.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductAbstractConfiguration as BaseSpyGiftCardProductAbstractConfiguration; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLink.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLink.php index 907c317296..a8b0ea050a 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLink.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLink.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductAbstractConfigurationLink as BaseSpyGiftCardProductAbstractConfigurationLink; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLinkQuery.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLinkQuery.php index 886240425f..44e661ae40 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLinkQuery.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationLinkQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductAbstractConfigurationLinkQuery as BaseSpyGiftCardProductAbstractConfigurationLinkQuery; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationQuery.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationQuery.php index 8a3d26b38f..29fa8a0203 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationQuery.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductAbstractConfigurationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductAbstractConfigurationQuery as BaseSpyGiftCardProductAbstractConfigurationQuery; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfiguration.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfiguration.php index 6d86d36eea..fe15e8c4b0 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfiguration.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfiguration.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductConfiguration as BaseSpyGiftCardProductConfiguration; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLink.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLink.php index 7d69779567..4d469df9f6 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLink.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLink.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductConfigurationLink as BaseSpyGiftCardProductConfigurationLink; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLinkQuery.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLinkQuery.php index 36f1034524..fe4b5fe8cd 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLinkQuery.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationLinkQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductConfigurationLinkQuery as BaseSpyGiftCardProductConfigurationLinkQuery; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationQuery.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationQuery.php index 68b0bd1736..a330f5c2d4 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationQuery.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardProductConfigurationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardProductConfigurationQuery as BaseSpyGiftCardProductConfigurationQuery; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardQuery.php b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardQuery.php index 35fa561d85..1593da050f 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardQuery.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyGiftCardQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyGiftCardQuery as BaseSpyGiftCardQuery; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCard.php b/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCard.php index a548d38919..e20f9ae0a6 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCard.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCard.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyPaymentGiftCard as BaseSpyPaymentGiftCard; diff --git a/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCardQuery.php b/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCardQuery.php index 1c2a96c5d6..01bf1c129e 100644 --- a/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCardQuery.php +++ b/src/Orm/Zed/GiftCard/Persistence/SpyPaymentGiftCardQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCard\Persistence; use Spryker\Zed\GiftCard\Persistence\Propel\AbstractSpyPaymentGiftCardQuery as BaseSpyPaymentGiftCardQuery; diff --git a/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLog.php b/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLog.php index 9ec6c719cd..a550f4dba1 100644 --- a/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLog.php +++ b/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLog.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCardBalance\Persistence; use Orm\Zed\GiftCardBalance\Persistence\Base\SpyGiftCardBalanceLog as BaseSpyGiftCardBalanceLog; diff --git a/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLogQuery.php b/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLogQuery.php index 0d30927fdc..28baf4a662 100644 --- a/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLogQuery.php +++ b/src/Orm/Zed/GiftCardBalance/Persistence/SpyGiftCardBalanceLogQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GiftCardBalance\Persistence; use Orm\Zed\GiftCardBalance\Persistence\Base\SpyGiftCardBalanceLogQuery as BaseSpyGiftCardBalanceLogQuery; diff --git a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKey.php b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKey.php index c41a2f2953..31f27a726e 100644 --- a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKey.php +++ b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKey.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Glossary\Persistence; use Spryker\Zed\Glossary\Persistence\Propel\AbstractSpyGlossaryKey as BaseSpyGlossaryKey; diff --git a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKeyQuery.php b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKeyQuery.php index c4dd52635d..b3868e2534 100644 --- a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKeyQuery.php +++ b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryKeyQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Glossary\Persistence; use Spryker\Zed\Glossary\Persistence\Propel\AbstractSpyGlossaryKeyQuery as BaseSpyGlossaryKeyQuery; diff --git a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslation.php b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslation.php index 1f1b6813ae..1f3fb6c672 100644 --- a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslation.php +++ b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Glossary\Persistence; use Spryker\Zed\Glossary\Persistence\Propel\AbstractSpyGlossaryTranslation as BaseSpyGlossaryTranslation; diff --git a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslationQuery.php b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslationQuery.php index 782d61e104..9887d4975d 100644 --- a/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslationQuery.php +++ b/src/Orm/Zed/Glossary/Persistence/SpyGlossaryTranslationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Glossary\Persistence; use Spryker\Zed\Glossary\Persistence\Propel\AbstractSpyGlossaryTranslationQuery as BaseSpyGlossaryTranslationQuery; diff --git a/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorage.php b/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorage.php index 15173aa87a..9b00862456 100644 --- a/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorage.php +++ b/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GlossaryStorage\Persistence; use Spryker\Zed\GlossaryStorage\Persistence\Propel\AbstractSpyGlossaryStorage; diff --git a/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorageQuery.php b/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorageQuery.php index 71a49ebf5f..3d462daf7e 100644 --- a/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorageQuery.php +++ b/src/Orm/Zed/GlossaryStorage/Persistence/SpyGlossaryStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\GlossaryStorage\Persistence; use Spryker\Zed\GlossaryStorage\Persistence\Propel\AbstractSpyGlossaryStorageQuery; diff --git a/src/Orm/Zed/KernelApp/Persistence/SpyAppConfig.php b/src/Orm/Zed/KernelApp/Persistence/SpyAppConfig.php index 9438b589f7..9b04e98ef9 100644 --- a/src/Orm/Zed/KernelApp/Persistence/SpyAppConfig.php +++ b/src/Orm/Zed/KernelApp/Persistence/SpyAppConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\KernelApp\Persistence; use Spryker\Zed\KernelApp\Persistence\Propel\AbstractSpyAppConfig as BaseSpyAppConfig; diff --git a/src/Orm/Zed/KernelApp/Persistence/SpyAppConfigQuery.php b/src/Orm/Zed/KernelApp/Persistence/SpyAppConfigQuery.php index d7b44ad620..dfb61f26a6 100644 --- a/src/Orm/Zed/KernelApp/Persistence/SpyAppConfigQuery.php +++ b/src/Orm/Zed/KernelApp/Persistence/SpyAppConfigQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\KernelApp\Persistence; use Spryker\Zed\KernelApp\Persistence\Propel\AbstractSpyAppConfigQuery as BaseSpyAppConfigQuery; diff --git a/src/Orm/Zed/Locale/Persistence/SpyLocale.php b/src/Orm/Zed/Locale/Persistence/SpyLocale.php index 619bd4c88e..0cadef6203 100644 --- a/src/Orm/Zed/Locale/Persistence/SpyLocale.php +++ b/src/Orm/Zed/Locale/Persistence/SpyLocale.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Locale\Persistence; use Spryker\Zed\Locale\Persistence\Propel\AbstractSpyLocale as BaseSpyLocale; diff --git a/src/Orm/Zed/Locale/Persistence/SpyLocaleQuery.php b/src/Orm/Zed/Locale/Persistence/SpyLocaleQuery.php index 3f6d4433fa..7c747a4dfc 100644 --- a/src/Orm/Zed/Locale/Persistence/SpyLocaleQuery.php +++ b/src/Orm/Zed/Locale/Persistence/SpyLocaleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Locale\Persistence; use Spryker\Zed\Locale\Persistence\Propel\AbstractSpyLocaleQuery as BaseSpyLocaleQuery; diff --git a/src/Orm/Zed/Locale/Persistence/SpyLocaleStore.php b/src/Orm/Zed/Locale/Persistence/SpyLocaleStore.php index c6a586dc55..9bb91aa4fc 100644 --- a/src/Orm/Zed/Locale/Persistence/SpyLocaleStore.php +++ b/src/Orm/Zed/Locale/Persistence/SpyLocaleStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Locale\Persistence; use Spryker\Zed\Locale\Persistence\Propel\AbstractSpyLocaleStore as BaseSpyLocaleStore; diff --git a/src/Orm/Zed/Locale/Persistence/SpyLocaleStoreQuery.php b/src/Orm/Zed/Locale/Persistence/SpyLocaleStoreQuery.php index 6d19386da0..c45917cc07 100644 --- a/src/Orm/Zed/Locale/Persistence/SpyLocaleStoreQuery.php +++ b/src/Orm/Zed/Locale/Persistence/SpyLocaleStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Locale\Persistence; use Spryker\Zed\Locale\Persistence\Propel\AbstractSpyLocaleStoreQuery as BaseSpyLocaleStoreQuery; diff --git a/src/Orm/Zed/Navigation/Persistence/SpyNavigation.php b/src/Orm/Zed/Navigation/Persistence/SpyNavigation.php index 79b696be31..fb3bb885c1 100644 --- a/src/Orm/Zed/Navigation/Persistence/SpyNavigation.php +++ b/src/Orm/Zed/Navigation/Persistence/SpyNavigation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Navigation\Persistence; use Orm\Zed\Navigation\Persistence\Base\SpyNavigation as BaseSpyNavigation; diff --git a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNode.php b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNode.php index 79f9cc5618..a0ebc04fcd 100644 --- a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNode.php +++ b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNode.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Navigation\Persistence; use Orm\Zed\Navigation\Persistence\Base\SpyNavigationNode as BaseSpyNavigationNode; diff --git a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributes.php b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributes.php index 4ab7f86bc1..7921341abb 100644 --- a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributes.php +++ b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Navigation\Persistence; use Orm\Zed\Navigation\Persistence\Base\SpyNavigationNodeLocalizedAttributes as BaseSpyNavigationNodeLocalizedAttributes; diff --git a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributesQuery.php b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributesQuery.php index ac2929ee8d..ba5a16d082 100644 --- a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributesQuery.php +++ b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Navigation\Persistence; use Orm\Zed\Navigation\Persistence\Base\SpyNavigationNodeLocalizedAttributesQuery as BaseSpyNavigationNodeLocalizedAttributesQuery; diff --git a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeQuery.php b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeQuery.php index 3ab2659c6d..19e6cb6323 100644 --- a/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeQuery.php +++ b/src/Orm/Zed/Navigation/Persistence/SpyNavigationNodeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Navigation\Persistence; use Orm\Zed\Navigation\Persistence\Base\SpyNavigationNodeQuery as BaseSpyNavigationNodeQuery; diff --git a/src/Orm/Zed/Navigation/Persistence/SpyNavigationQuery.php b/src/Orm/Zed/Navigation/Persistence/SpyNavigationQuery.php index 44861f898f..702c245315 100644 --- a/src/Orm/Zed/Navigation/Persistence/SpyNavigationQuery.php +++ b/src/Orm/Zed/Navigation/Persistence/SpyNavigationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Navigation\Persistence; use Orm\Zed\Navigation\Persistence\Base\SpyNavigationQuery as BaseSpyNavigationQuery; diff --git a/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorage.php b/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorage.php index f0060ab717..2f2886dae6 100644 --- a/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorage.php +++ b/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\NavigationStorage\Persistence; use Spryker\Zed\NavigationStorage\Persistence\Propel\AbstractSpyNavigationStorage; diff --git a/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorageQuery.php b/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorageQuery.php index ba225e3f67..451443a2f4 100644 --- a/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorageQuery.php +++ b/src/Orm/Zed/NavigationStorage/Persistence/SpyNavigationStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\NavigationStorage\Persistence; use Spryker\Zed\NavigationStorage\Persistence\Propel\AbstractSpyNavigationStorageQuery; diff --git a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriber.php b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriber.php index e00ba16aa0..986fddea4a 100644 --- a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriber.php +++ b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriber.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Newsletter\Persistence; use Spryker\Zed\Newsletter\Persistence\Propel\AbstractSpyNewsletterSubscriber as BaseSpyNewsletterSubscriber; diff --git a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriberQuery.php b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriberQuery.php index aef0e6ca60..ce6aa9b2cc 100644 --- a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriberQuery.php +++ b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriberQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Newsletter\Persistence; use Spryker\Zed\Newsletter\Persistence\Propel\AbstractSpyNewsletterSubscriberQuery as BaseSpyNewsletterSubscriberQuery; diff --git a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscription.php b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscription.php index 19a1c7af57..11245f9a5a 100644 --- a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscription.php +++ b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscription.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Newsletter\Persistence; use Spryker\Zed\Newsletter\Persistence\Propel\AbstractSpyNewsletterSubscription as BaseSpyNewsletterSubscription; diff --git a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriptionQuery.php b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriptionQuery.php index c27b05577c..2dcadaa835 100644 --- a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriptionQuery.php +++ b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterSubscriptionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Newsletter\Persistence; use Spryker\Zed\Newsletter\Persistence\Propel\AbstractSpyNewsletterSubscriptionQuery as BaseSpyNewsletterSubscriptionQuery; diff --git a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterType.php b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterType.php index 67dd4184e3..9102bc8a4b 100644 --- a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterType.php +++ b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Newsletter\Persistence; use Spryker\Zed\Newsletter\Persistence\Propel\AbstractSpyNewsletterType as BaseSpyNewsletterType; diff --git a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterTypeQuery.php b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterTypeQuery.php index ba22cb7be6..fc2d859fea 100644 --- a/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterTypeQuery.php +++ b/src/Orm/Zed/Newsletter/Persistence/SpyNewsletterTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Newsletter\Persistence; use Spryker\Zed\Newsletter\Persistence\Propel\AbstractSpyNewsletterTypeQuery as BaseSpyNewsletterTypeQuery; diff --git a/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaid.php b/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaid.php index 50ae22453c..f8e9849978 100644 --- a/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaid.php +++ b/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaid.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Nopayment\Persistence; use Spryker\Zed\Nopayment\Persistence\Propel\AbstractSpyNopaymentPaid as BaseSpyNopaymentPaid; diff --git a/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaidQuery.php b/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaidQuery.php index 56b03b0295..fd1ad6f706 100644 --- a/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaidQuery.php +++ b/src/Orm/Zed/Nopayment/Persistence/SpyNopaymentPaidQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Nopayment\Persistence; use Spryker\Zed\Nopayment\Persistence\Propel\AbstractSpyNopaymentPaidQuery as BaseSpyNopaymentPaidQuery; diff --git a/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessToken.php b/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessToken.php index 023e70ff58..a4f0623ab6 100644 --- a/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessToken.php +++ b/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessToken.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oauth\Persistence; use Spryker\Zed\Oauth\Persistence\Propel\AbstractSpyOauthAccessToken as BaseSpyOauthAccessToken; diff --git a/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessTokenQuery.php b/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessTokenQuery.php index 9e9df8c08f..c0ee37b7e3 100644 --- a/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessTokenQuery.php +++ b/src/Orm/Zed/Oauth/Persistence/SpyOauthAccessTokenQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oauth\Persistence; use Orm\Zed\Oauth\Persistence\Base\SpyOauthAccessTokenQuery as BaseSpyOauthAccessTokenQuery; diff --git a/src/Orm/Zed/Oauth/Persistence/SpyOauthClient.php b/src/Orm/Zed/Oauth/Persistence/SpyOauthClient.php index beaeea9c00..c0d8952359 100644 --- a/src/Orm/Zed/Oauth/Persistence/SpyOauthClient.php +++ b/src/Orm/Zed/Oauth/Persistence/SpyOauthClient.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oauth\Persistence; use Spryker\Zed\Oauth\Persistence\Propel\AbstractSpyOauthClient as BaseSpyOauthClient; diff --git a/src/Orm/Zed/Oauth/Persistence/SpyOauthClientQuery.php b/src/Orm/Zed/Oauth/Persistence/SpyOauthClientQuery.php index fa4884904b..caf735b858 100644 --- a/src/Orm/Zed/Oauth/Persistence/SpyOauthClientQuery.php +++ b/src/Orm/Zed/Oauth/Persistence/SpyOauthClientQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oauth\Persistence; use Orm\Zed\Oauth\Persistence\Base\SpyOauthClientQuery as BaseSpyOauthClientQuery; diff --git a/src/Orm/Zed/Oauth/Persistence/SpyOauthScope.php b/src/Orm/Zed/Oauth/Persistence/SpyOauthScope.php index e8a18ec4e3..649b63ce2e 100644 --- a/src/Orm/Zed/Oauth/Persistence/SpyOauthScope.php +++ b/src/Orm/Zed/Oauth/Persistence/SpyOauthScope.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oauth\Persistence; use Spryker\Zed\Oauth\Persistence\Propel\AbstractSpyOauthScope as BaseSpyOauthScope; diff --git a/src/Orm/Zed/Oauth/Persistence/SpyOauthScopeQuery.php b/src/Orm/Zed/Oauth/Persistence/SpyOauthScopeQuery.php index 97747a8a2b..af5dfd0962 100644 --- a/src/Orm/Zed/Oauth/Persistence/SpyOauthScopeQuery.php +++ b/src/Orm/Zed/Oauth/Persistence/SpyOauthScopeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oauth\Persistence; use Orm\Zed\Oauth\Persistence\Base\SpyOauthScopeQuery as BaseSpyOauthScopeQuery; diff --git a/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCache.php b/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCache.php index 38bab7b51a..8b6741c449 100644 --- a/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCache.php +++ b/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCache.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\OauthClient\Persistence; use Spryker\Zed\OauthClient\Persistence\Propel\AbstractSpyOauthClientAccessTokenCache as BaseSpyOauthClientAccessTokenCache; diff --git a/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCacheQuery.php b/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCacheQuery.php index ddcef52acb..9bc531b4b1 100644 --- a/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCacheQuery.php +++ b/src/Orm/Zed/OauthClient/Persistence/SpyOauthClientAccessTokenCacheQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\OauthClient\Persistence; use Spryker\Zed\OauthClient\Persistence\Propel\AbstractSpyOauthClientAccessTokenCacheQuery as BaseSpyOauthClientAccessTokenCacheQuery; diff --git a/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshToken.php b/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshToken.php index 57d15a490a..abf8e3296b 100644 --- a/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshToken.php +++ b/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshToken.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\OauthRevoke\Persistence; use Spryker\Zed\OauthRevoke\Persistence\Propel\AbstractSpyOauthRefreshToken as BaseSpyOauthRefreshToken; diff --git a/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshTokenQuery.php b/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshTokenQuery.php index 5d68a1d8bb..3a24fe5029 100644 --- a/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshTokenQuery.php +++ b/src/Orm/Zed/OauthRevoke/Persistence/SpyOauthRefreshTokenQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\OauthRevoke\Persistence; use Spryker\Zed\OauthRevoke\Persistence\Propel\AbstractSpyOauthRefreshTokenQuery as BaseSpyOauthRefreshTokenQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeout.php b/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeout.php index 5fc905653b..09d4bac374 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeout.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeout.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsEventTimeout as BaseSpyOmsEventTimeout; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeoutQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeoutQuery.php index a410fa29e9..1ba3227020 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeoutQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsEventTimeoutQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsEventTimeoutQuery as BaseSpyOmsEventTimeoutQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemState.php b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemState.php index 6f995b21e4..90ef7201cb 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemState.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemState.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsOrderItemState as BaseSpyOmsOrderItemState; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistory.php b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistory.php index 3e334a101a..9e809bdbec 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistory.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsOrderItemStateHistory as BaseSpyOmsOrderItemStateHistory; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistoryQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistoryQuery.php index ec13659b36..41205c5d5e 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistoryQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateHistoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsOrderItemStateHistoryQuery as BaseSpyOmsOrderItemStateHistoryQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateQuery.php index cce6df0468..ccb96ffa7d 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderItemStateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsOrderItemStateQuery as BaseSpyOmsOrderItemStateQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcess.php b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcess.php index 68912a851d..686a590ffa 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcess.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcess.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsOrderProcess as BaseSpyOmsOrderProcess; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcessQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcessQuery.php index 6ae06cfc27..5db437cdc9 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcessQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsOrderProcessQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsOrderProcessQuery as BaseSpyOmsOrderProcessQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservation.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservation.php index af0c9534ec..705c7a5a07 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservation.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservation as BaseSpyOmsProductReservation; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersion.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersion.php index a83075b0ca..5d5e922620 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersion.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersion.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationChangeVersion as BaseSpyOmsProductReservationChangeVersion; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersionQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersionQuery.php index f75eb5cce9..fbb3d190e2 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersionQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationChangeVersionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationChangeVersionQuery as BaseSpyOmsProductReservationChangeVersionQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersion.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersion.php index 24566819bd..02bee21758 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersion.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersion.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationLastExportedVersion as BaseSpyOmsProductReservationLastExportedVersion; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersionQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersionQuery.php index 9a4fdebae2..e0f731c28a 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersionQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationLastExportedVersionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationLastExportedVersionQuery as BaseSpyOmsProductReservationLastExportedVersionQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationQuery.php index 5796827577..5448cb4cf5 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationQuery as BaseSpyOmsProductReservationQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStore.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStore.php index 2211272dce..63fe21c59d 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStore.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationStore as BaseSpyOmsProductReservationStore; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStoreQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStoreQuery.php index d5875923bb..9536247856 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStoreQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsProductReservationStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsProductReservationStoreQuery as BaseSpyOmsProductReservationStoreQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLock.php b/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLock.php index 5d133be829..d399a9f8f7 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLock.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLock.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsStateMachineLock as BaseSpyOmsStateMachineLock; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLockQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLockQuery.php index 63cc944c85..820b37745d 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLockQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsStateMachineLockQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsStateMachineLockQuery as BaseSpyOmsStateMachineLockQuery; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLog.php b/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLog.php index 3ef07805b0..604e354edf 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLog.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLog.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsTransitionLog as BaseSpyOmsTransitionLog; diff --git a/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLogQuery.php b/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLogQuery.php index 503f837a39..49cee817c0 100644 --- a/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLogQuery.php +++ b/src/Orm/Zed/Oms/Persistence/SpyOmsTransitionLogQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Oms\Persistence; use Spryker\Zed\Oms\Persistence\Propel\AbstractSpyOmsTransitionLogQuery as BaseSpyOmsTransitionLogQuery; diff --git a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethod.php b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethod.php index 5bde21737f..564355226c 100644 --- a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethod.php +++ b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethod.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpyPaymentMethod as BaseSpyPaymentMethod; diff --git a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodQuery.php b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodQuery.php index b3f10d3030..8bb6cf3158 100644 --- a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodQuery.php +++ b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpyPaymentMethodQuery as BaseSpyPaymentMethodQuery; diff --git a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStore.php b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStore.php index 4b98f02335..ff87ce2ad3 100644 --- a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStore.php +++ b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpyPaymentMethodStore as BaseSpyPaymentMethodStore; diff --git a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStoreQuery.php b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStoreQuery.php index 6e04943c57..88117bd424 100644 --- a/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStoreQuery.php +++ b/src/Orm/Zed/Payment/Persistence/SpyPaymentMethodStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpyPaymentMethodStoreQuery as BaseSpyPaymentMethodStoreQuery; diff --git a/src/Orm/Zed/Payment/Persistence/SpyPaymentProvider.php b/src/Orm/Zed/Payment/Persistence/SpyPaymentProvider.php index bd6e3562fa..663a1bd121 100644 --- a/src/Orm/Zed/Payment/Persistence/SpyPaymentProvider.php +++ b/src/Orm/Zed/Payment/Persistence/SpyPaymentProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpyPaymentProvider as BaseSpyPaymentProvider; diff --git a/src/Orm/Zed/Payment/Persistence/SpyPaymentProviderQuery.php b/src/Orm/Zed/Payment/Persistence/SpyPaymentProviderQuery.php index 6534fc8389..66b7926c33 100644 --- a/src/Orm/Zed/Payment/Persistence/SpyPaymentProviderQuery.php +++ b/src/Orm/Zed/Payment/Persistence/SpyPaymentProviderQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpyPaymentProviderQuery as BaseSpyPaymentProviderQuery; diff --git a/src/Orm/Zed/Payment/Persistence/SpySalesPayment.php b/src/Orm/Zed/Payment/Persistence/SpySalesPayment.php index c16b31382c..6fc06ae3bb 100644 --- a/src/Orm/Zed/Payment/Persistence/SpySalesPayment.php +++ b/src/Orm/Zed/Payment/Persistence/SpySalesPayment.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpySalesPayment as BaseSpySalesPayment; diff --git a/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodType.php b/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodType.php index cfae5a1757..32ad9ad4f7 100644 --- a/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodType.php +++ b/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpySalesPaymentMethodType as BaseSpySalesPaymentMethodType; diff --git a/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodTypeQuery.php b/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodTypeQuery.php index a7e1708a3c..e6e47e1cef 100644 --- a/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodTypeQuery.php +++ b/src/Orm/Zed/Payment/Persistence/SpySalesPaymentMethodTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpySalesPaymentMethodTypeQuery as BaseSpySalesPaymentMethodTypeQuery; diff --git a/src/Orm/Zed/Payment/Persistence/SpySalesPaymentQuery.php b/src/Orm/Zed/Payment/Persistence/SpySalesPaymentQuery.php index c9229629c7..381661af5f 100644 --- a/src/Orm/Zed/Payment/Persistence/SpySalesPaymentQuery.php +++ b/src/Orm/Zed/Payment/Persistence/SpySalesPaymentQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Payment\Persistence; use Spryker\Zed\Payment\Persistence\Propel\AbstractSpySalesPaymentQuery as BaseSpySalesPaymentQuery; diff --git a/src/Orm/Zed/Permission/Persistence/SpyPermission.php b/src/Orm/Zed/Permission/Persistence/SpyPermission.php index bf958d7382..c7e8861f1c 100644 --- a/src/Orm/Zed/Permission/Persistence/SpyPermission.php +++ b/src/Orm/Zed/Permission/Persistence/SpyPermission.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Permission\Persistence; use Orm\Zed\Permission\Persistence\Base\SpyPermission as BaseSpyPermission; diff --git a/src/Orm/Zed/Permission/Persistence/SpyPermissionQuery.php b/src/Orm/Zed/Permission/Persistence/SpyPermissionQuery.php index a56c5b9118..f970ecd1e0 100644 --- a/src/Orm/Zed/Permission/Persistence/SpyPermissionQuery.php +++ b/src/Orm/Zed/Permission/Persistence/SpyPermissionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Permission\Persistence; use Orm\Zed\Permission\Persistence\Base\SpyPermissionQuery as BaseSpyPermissionQuery; diff --git a/src/Orm/Zed/PickingList/Persistence/SpyPickingList.php b/src/Orm/Zed/PickingList/Persistence/SpyPickingList.php index 8ebea56248..3f39015932 100644 --- a/src/Orm/Zed/PickingList/Persistence/SpyPickingList.php +++ b/src/Orm/Zed/PickingList/Persistence/SpyPickingList.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PickingList\Persistence; use Spryker\Zed\PickingList\Persistence\Propel\AbstractSpyPickingList as BaseSpyPickingList; diff --git a/src/Orm/Zed/PickingList/Persistence/SpyPickingListItem.php b/src/Orm/Zed/PickingList/Persistence/SpyPickingListItem.php index b251151745..69f06bd150 100644 --- a/src/Orm/Zed/PickingList/Persistence/SpyPickingListItem.php +++ b/src/Orm/Zed/PickingList/Persistence/SpyPickingListItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PickingList\Persistence; use Spryker\Zed\PickingList\Persistence\Propel\AbstractSpyPickingListItem as BaseSpyPickingListItem; diff --git a/src/Orm/Zed/PickingList/Persistence/SpyPickingListItemQuery.php b/src/Orm/Zed/PickingList/Persistence/SpyPickingListItemQuery.php index c874cd130d..2fef6a1593 100644 --- a/src/Orm/Zed/PickingList/Persistence/SpyPickingListItemQuery.php +++ b/src/Orm/Zed/PickingList/Persistence/SpyPickingListItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PickingList\Persistence; use Spryker\Zed\PickingList\Persistence\Propel\AbstractSpyPickingListItemQuery as BaseSpyPickingListItemQuery; diff --git a/src/Orm/Zed/PickingList/Persistence/SpyPickingListQuery.php b/src/Orm/Zed/PickingList/Persistence/SpyPickingListQuery.php index 20d83d746f..fe88b63fe1 100644 --- a/src/Orm/Zed/PickingList/Persistence/SpyPickingListQuery.php +++ b/src/Orm/Zed/PickingList/Persistence/SpyPickingListQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PickingList\Persistence; use Spryker\Zed\PickingList\Persistence\Propel\AbstractSpyPickingListQuery as BaseSpyPickingListQuery; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProduct.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProduct.php index dd83ee9959..55aec5677f 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProduct.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProduct.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Spryker\Zed\PriceProduct\Persistence\Propel\AbstractSpyPriceProduct; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefault.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefault.php index 03c9d931ac..eb4dbe2d35 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefault.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefault.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Orm\Zed\PriceProduct\Persistence\Base\SpyPriceProductDefault as BaseSpyPriceProductDefault; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefaultQuery.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefaultQuery.php index a87199347e..833a23080d 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefaultQuery.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductDefaultQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Orm\Zed\PriceProduct\Persistence\Base\SpyPriceProductDefaultQuery as BaseSpyPriceProductDefaultQuery; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductQuery.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductQuery.php index c18a560901..b1741ed801 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductQuery.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Spryker\Zed\PriceProduct\Persistence\Propel\AbstractSpyPriceProductQuery; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStore.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStore.php index f85d08755b..c56d9d20b7 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStore.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Spryker\Zed\PriceProduct\Persistence\Propel\AbstractSpyPriceProductStore; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStoreQuery.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStoreQuery.php index 584ab77ddf..c5e2b004ff 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStoreQuery.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceProductStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Spryker\Zed\PriceProduct\Persistence\Propel\AbstractSpyPriceProductStoreQuery; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceType.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceType.php index 104385c256..b12216ad64 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceType.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Spryker\Zed\PriceProduct\Persistence\Propel\AbstractSpyPriceType; diff --git a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceTypeQuery.php b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceTypeQuery.php index 5626aa7424..79c79dc63c 100644 --- a/src/Orm/Zed/PriceProduct/Persistence/SpyPriceTypeQuery.php +++ b/src/Orm/Zed/PriceProduct/Persistence/SpyPriceTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProduct\Persistence; use Spryker\Zed\PriceProduct\Persistence\Propel\AbstractSpyPriceTypeQuery; diff --git a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductSchedule.php b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductSchedule.php index 3a0c1603ec..a5afe5eea8 100644 --- a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductSchedule.php +++ b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductSchedule.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductSchedule\Persistence; use Spryker\Zed\PriceProductSchedule\Persistence\Propel\AbstractSpyPriceProductSchedule as BaseSpyPriceProductSchedule; diff --git a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleList.php b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleList.php index 68db90116a..b5d7b15d6f 100644 --- a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleList.php +++ b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleList.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductSchedule\Persistence; use Spryker\Zed\PriceProductSchedule\Persistence\Propel\AbstractSpyPriceProductScheduleList as BaseSpyPriceProductScheduleList; diff --git a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleListQuery.php b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleListQuery.php index 243f2a6fd8..93dd3c8e4e 100644 --- a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleListQuery.php +++ b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleListQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductSchedule\Persistence; use Spryker\Zed\PriceProductSchedule\Persistence\Propel\AbstractSpyPriceProductScheduleListQuery as BaseSpyPriceProductScheduleListQuery; diff --git a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleQuery.php b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleQuery.php index e97d6cc466..659df23937 100644 --- a/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleQuery.php +++ b/src/Orm/Zed/PriceProductSchedule/Persistence/SpyPriceProductScheduleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductSchedule\Persistence; use Spryker\Zed\PriceProductSchedule\Persistence\Propel\AbstractSpyPriceProductScheduleQuery as BaseSpyPriceProductScheduleQuery; diff --git a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorage.php b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorage.php index c9b1c56db3..8016dba938 100644 --- a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorage.php +++ b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductStorage\Persistence; use Spryker\Zed\PriceProductStorage\Persistence\Propel\AbstractSpyPriceProductAbstractStorage; diff --git a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorageQuery.php b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorageQuery.php index 2ee5e03a0a..674fa489d9 100644 --- a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorageQuery.php +++ b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductAbstractStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductStorage\Persistence; use Spryker\Zed\PriceProductStorage\Persistence\Propel\AbstractSpyPriceProductAbstractStorageQuery; diff --git a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorage.php b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorage.php index 2b84eb2810..b321d8bf88 100644 --- a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorage.php +++ b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductStorage\Persistence; use Spryker\Zed\PriceProductStorage\Persistence\Propel\AbstractSpyPriceProductConcreteStorage; diff --git a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorageQuery.php b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorageQuery.php index daa46cc348..38ca6fd1b5 100644 --- a/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorageQuery.php +++ b/src/Orm/Zed/PriceProductStorage/Persistence/SpyPriceProductConcreteStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PriceProductStorage\Persistence; use Spryker\Zed\PriceProductStorage\Persistence\Propel\AbstractSpyPriceProductConcreteStorageQuery; diff --git a/src/Orm/Zed/Product/Persistence/SpyProduct.php b/src/Orm/Zed/Product/Persistence/SpyProduct.php index 32e981427c..9fc32130e9 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProduct.php +++ b/src/Orm/Zed/Product/Persistence/SpyProduct.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProduct as BaseSpyProduct; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAbstract.php b/src/Orm/Zed/Product/Persistence/SpyProductAbstract.php index 8f6273f418..c008350689 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAbstract.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAbstract.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAbstract as BaseSpyProductAbstract; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributes.php b/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributes.php index 6c076cff2d..8f30b25e23 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributes.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAbstractLocalizedAttributes as BaseSpyProductAbstractLocalizedAttributes; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributesQuery.php b/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributesQuery.php index 81e30eee99..cf5ea6b0a4 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributesQuery.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAbstractLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAbstractLocalizedAttributesQuery as BaseSpyProductAbstractLocalizedAttributesQuery; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAbstractQuery.php b/src/Orm/Zed/Product/Persistence/SpyProductAbstractQuery.php index 54c4f65576..cb38565db9 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAbstractQuery.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAbstractQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAbstractQuery as BaseSpyProductAbstractQuery; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAbstractStore.php b/src/Orm/Zed/Product/Persistence/SpyProductAbstractStore.php index f8b94b7a0b..8a8c42bb98 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAbstractStore.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAbstractStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAbstractStore as BaseSpyProductAbstractStore; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAbstractStoreQuery.php b/src/Orm/Zed/Product/Persistence/SpyProductAbstractStoreQuery.php index 7035006d1f..1630e8c5f4 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAbstractStoreQuery.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAbstractStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAbstractStoreQuery as BaseSpyProductAbstractStoreQuery; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAttributeKey.php b/src/Orm/Zed/Product/Persistence/SpyProductAttributeKey.php index 123eb218e8..d77929b364 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAttributeKey.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAttributeKey.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAttributeKey as BaseSpyProductAttributeKey; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductAttributeKeyQuery.php b/src/Orm/Zed/Product/Persistence/SpyProductAttributeKeyQuery.php index f258995cc8..44229399e1 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductAttributeKeyQuery.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductAttributeKeyQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductAttributeKeyQuery as BaseSpyProductAttributeKeyQuery; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributes.php b/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributes.php index e966591cff..c5a9ee113a 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributes.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductLocalizedAttributes as BaseSpyProductLocalizedAttributes; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributesQuery.php b/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributesQuery.php index 6e9d451ad1..efc264e4db 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributesQuery.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductLocalizedAttributesQuery as BaseSpyProductLocalizedAttributesQuery; diff --git a/src/Orm/Zed/Product/Persistence/SpyProductQuery.php b/src/Orm/Zed/Product/Persistence/SpyProductQuery.php index ad8848424f..49bc4ac343 100644 --- a/src/Orm/Zed/Product/Persistence/SpyProductQuery.php +++ b/src/Orm/Zed/Product/Persistence/SpyProductQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Product\Persistence; use Spryker\Zed\Product\Persistence\Propel\AbstractSpyProductQuery as BaseSpyProductQuery; diff --git a/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternative.php b/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternative.php index ed35cf5343..1ba1081c1e 100644 --- a/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternative.php +++ b/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternative.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAlternative\Persistence; use Orm\Zed\ProductAlternative\Persistence\Base\SpyProductAlternative as BaseSpyProductAlternative; diff --git a/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternativeQuery.php b/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternativeQuery.php index a43a9330e8..427bdfacdb 100644 --- a/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternativeQuery.php +++ b/src/Orm/Zed/ProductAlternative/Persistence/SpyProductAlternativeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAlternative\Persistence; use Orm\Zed\ProductAlternative\Persistence\Base\SpyProductAlternativeQuery as BaseSpyProductAlternativeQuery; diff --git a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorage.php b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorage.php index 02f886a504..f7114dcb76 100644 --- a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorage.php +++ b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAlternativeStorage\Persistence; use Orm\Zed\ProductAlternativeStorage\Persistence\Base\SpyProductAlternativeStorage as BaseSpyProductAlternativeStorage; diff --git a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorageQuery.php b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorageQuery.php index 5663eb00d6..02c7bcfabb 100644 --- a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorageQuery.php +++ b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductAlternativeStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAlternativeStorage\Persistence; use Orm\Zed\ProductAlternativeStorage\Persistence\Base\SpyProductAlternativeStorageQuery as BaseSpyProductAlternativeStorageQuery; diff --git a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorage.php b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorage.php index 2571fc1db2..1fb45790bd 100644 --- a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorage.php +++ b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAlternativeStorage\Persistence; use Orm\Zed\ProductAlternativeStorage\Persistence\Base\SpyProductReplacementForStorage as BaseSpyProductReplacementForStorage; diff --git a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorageQuery.php b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorageQuery.php index 5df8c8cdbc..0109087d56 100644 --- a/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorageQuery.php +++ b/src/Orm/Zed/ProductAlternativeStorage/Persistence/SpyProductReplacementForStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAlternativeStorage\Persistence; use Orm\Zed\ProductAlternativeStorage\Persistence\Base\SpyProductReplacementForStorageQuery as BaseSpyProductReplacementForStorageQuery; diff --git a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttribute.php b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttribute.php index e3897a38c4..f0eb246298 100644 --- a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttribute.php +++ b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttribute.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAttribute\Persistence; use Spryker\Zed\ProductAttribute\Persistence\Propel\AbstractSpyProductAttribute as BaseSpyProductAttribute; diff --git a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeQuery.php b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeQuery.php index c8ffe032f4..1a684eea1d 100644 --- a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeQuery.php +++ b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAttribute\Persistence; use Spryker\Zed\ProductAttribute\Persistence\Propel\AbstractSpyProductAttributeQuery as BaseSpyProductManagementAttributeQuery; diff --git a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValue.php b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValue.php index 22d07f9ba1..1e7650ecb6 100644 --- a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValue.php +++ b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValue.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAttribute\Persistence; use Spryker\Zed\ProductAttribute\Persistence\Propel\AbstractSpyProductAttributeValue as BaseSpyProductAttributeValue; diff --git a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueQuery.php b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueQuery.php index 7a29a08295..0b70698410 100644 --- a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueQuery.php +++ b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAttribute\Persistence; use Spryker\Zed\ProductAttribute\Persistence\Propel\AbstractSpyProductAttributeValueQuery as BaseSpyProductManagementAttributeValueQuery; diff --git a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslation.php b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslation.php index 2861896be9..d93680a456 100644 --- a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslation.php +++ b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAttribute\Persistence; use Spryker\Zed\ProductAttribute\Persistence\Propel\AbstractSpyProductManagementAttributeValueTranslation as BaseSpyProductManagementAttributeValueTranslation; diff --git a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslationQuery.php b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslationQuery.php index 85221be8d2..7bc83ceb43 100644 --- a/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslationQuery.php +++ b/src/Orm/Zed/ProductAttribute/Persistence/SpyProductManagementAttributeValueTranslationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductAttribute\Persistence; use Spryker\Zed\ProductAttribute\Persistence\Propel\AbstractSpyProductManagementAttributeValueTranslationQuery as BaseSpyProductManagementAttributeValueTranslationQuery; diff --git a/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundle.php b/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundle.php index 744836a8fd..93bf35e5a2 100644 --- a/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundle.php +++ b/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundle.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductBundle\Persistence; use Spryker\Zed\ProductBundle\Persistence\Propel\AbstractSpyProductBundle as BaseSpyProductBundle; diff --git a/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundleQuery.php b/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundleQuery.php index 4e8776e698..31519df2a3 100644 --- a/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundleQuery.php +++ b/src/Orm/Zed/ProductBundle/Persistence/SpyProductBundleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductBundle\Persistence; use Spryker\Zed\ProductBundle\Persistence\Propel\AbstractSpyProductBundleQuery as BaseSpyProductBundleQuery; diff --git a/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundle.php b/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundle.php index eb1407a45c..66b91b6ed3 100644 --- a/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundle.php +++ b/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundle.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductBundle\Persistence; use Spryker\Zed\ProductBundle\Persistence\Propel\AbstractSpySalesOrderItemBundle as BaseSpySalesOrderItemBundle; diff --git a/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundleQuery.php b/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundleQuery.php index 251a89b943..a54534edbd 100644 --- a/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundleQuery.php +++ b/src/Orm/Zed/ProductBundle/Persistence/SpySalesOrderItemBundleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductBundle\Persistence; use Spryker\Zed\ProductBundle\Persistence\Propel\AbstractSpySalesOrderItemBundleQuery as BaseSpySalesOrderItemBundleQuery; diff --git a/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorage.php b/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorage.php index 05d0b18664..11110741ff 100644 --- a/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorage.php +++ b/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductBundleStorage\Persistence; use Spryker\Zed\ProductBundleStorage\Persistence\Propel\AbstractSpyProductBundleStorage as BaseSpyProductBundleStorage; diff --git a/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorageQuery.php b/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorageQuery.php index 8d0af60596..9b1cdc498e 100644 --- a/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorageQuery.php +++ b/src/Orm/Zed/ProductBundleStorage/Persistence/SpyProductBundleStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductBundleStorage\Persistence; use Spryker\Zed\ProductBundleStorage\Persistence\Propel\AbstractSpyProductBundleStorageQuery as BaseSpyProductBundleStorageQuery; diff --git a/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategory.php b/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategory.php index 484bb3a42c..f219515c59 100644 --- a/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategory.php +++ b/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategory\Persistence; use Spryker\Zed\ProductCategory\Persistence\Propel\AbstractSpyProductCategory as BaseSpyProductCategory; diff --git a/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategoryQuery.php b/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategoryQuery.php index 44d7033555..b03ee00773 100644 --- a/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategoryQuery.php +++ b/src/Orm/Zed/ProductCategory/Persistence/SpyProductCategoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategory\Persistence; use Spryker\Zed\ProductCategory\Persistence\Propel\AbstractSpyProductCategoryQuery as BaseSpyProductCategoryQuery; diff --git a/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilter.php b/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilter.php index 69fdba79de..d7f1baa66f 100644 --- a/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilter.php +++ b/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategoryFilter\Persistence; use Spryker\Zed\ProductCategoryFilter\Persistence\Propel\AbstractSpyProductCategoryFilter as BaseSpyProductCategoryFilter; diff --git a/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilterQuery.php b/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilterQuery.php index 7e35a27df5..e6e91dbd40 100644 --- a/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilterQuery.php +++ b/src/Orm/Zed/ProductCategoryFilter/Persistence/SpyProductCategoryFilterQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategoryFilter\Persistence; use Spryker\Zed\ProductCategoryFilter\Persistence\Propel\AbstractSpyProductCategoryFilterQuery as BaseSpyProductCategoryFilterQuery; diff --git a/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorage.php b/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorage.php index e8eef1debf..047387e0d7 100644 --- a/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorage.php +++ b/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategoryFilterStorage\Persistence; use Spryker\Zed\ProductCategoryFilterStorage\Persistence\Propel\AbstractSpyProductCategoryFilterStorage; diff --git a/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorageQuery.php b/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorageQuery.php index 420d1db901..dc3050f80c 100644 --- a/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorageQuery.php +++ b/src/Orm/Zed/ProductCategoryFilterStorage/Persistence/SpyProductCategoryFilterStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategoryFilterStorage\Persistence; use Spryker\Zed\ProductCategoryFilterStorage\Persistence\Propel\AbstractSpyProductCategoryFilterStorageQuery; diff --git a/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorage.php b/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorage.php index 554fdc0b55..ecc4196190 100644 --- a/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorage.php +++ b/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategoryStorage\Persistence; use Spryker\Zed\ProductCategoryStorage\Persistence\Propel\AbstractSpyProductAbstractCategoryStorage; diff --git a/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorageQuery.php b/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorageQuery.php index 7396c81417..01bc428061 100644 --- a/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorageQuery.php +++ b/src/Orm/Zed/ProductCategoryStorage/Persistence/SpyProductAbstractCategoryStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductCategoryStorage\Persistence; use Spryker\Zed\ProductCategoryStorage\Persistence\Propel\AbstractSpyProductAbstractCategoryStorageQuery; diff --git a/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfiguration.php b/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfiguration.php index 39c7a22977..c1a2a0816c 100644 --- a/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfiguration.php +++ b/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfiguration.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductConfiguration\Persistence; use Spryker\Zed\ProductConfiguration\Persistence\Propel\AbstractSpyProductConfiguration as BaseSpyProductConfiguration; diff --git a/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfigurationQuery.php b/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfigurationQuery.php index 20fa0c286e..c564d3088d 100644 --- a/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfigurationQuery.php +++ b/src/Orm/Zed/ProductConfiguration/Persistence/SpyProductConfigurationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductConfiguration\Persistence; use Spryker\Zed\ProductConfiguration\Persistence\Propel\AbstractSpyProductConfigurationQuery as BaseSpyProductConfigurationQuery; diff --git a/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorage.php b/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorage.php index f8957dacab..81cc1c0900 100644 --- a/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorage.php +++ b/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductConfigurationStorage\Persistence; use Spryker\Zed\ProductConfigurationStorage\Persistence\Propel\AbstractSpyProductConfigurationStorage as BaseSpyProductConfigurationStorage; diff --git a/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorageQuery.php b/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorageQuery.php index 9fdef1af8f..6ff04cf124 100644 --- a/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorageQuery.php +++ b/src/Orm/Zed/ProductConfigurationStorage/Persistence/SpyProductConfigurationStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductConfigurationStorage\Persistence; use Spryker\Zed\ProductConfigurationStorage\Persistence\Propel\AbstractSpyProductConfigurationStorageQuery as BaseSpyProductConfigurationStorageQuery; diff --git a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinued.php b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinued.php index c1d01f113c..f039691177 100644 --- a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinued.php +++ b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinued.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductDiscontinued\Persistence; use Orm\Zed\ProductDiscontinued\Persistence\Base\SpyProductDiscontinued as BaseSpyProductDiscontinued; diff --git a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNote.php b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNote.php index 0cf02c2f1f..3cad9fc8aa 100644 --- a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNote.php +++ b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNote.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductDiscontinued\Persistence; use Orm\Zed\ProductDiscontinued\Persistence\Base\SpyProductDiscontinuedNote as BaseSpyProductDiscontinuedNote; diff --git a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNoteQuery.php b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNoteQuery.php index 0c91aefd2c..d0518786ba 100644 --- a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNoteQuery.php +++ b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedNoteQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductDiscontinued\Persistence; use Orm\Zed\ProductDiscontinued\Persistence\Base\SpyProductDiscontinuedNoteQuery as BaseSpyProductDiscontinuedNoteQuery; diff --git a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedQuery.php b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedQuery.php index 198ce1003b..df7236c651 100644 --- a/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedQuery.php +++ b/src/Orm/Zed/ProductDiscontinued/Persistence/SpyProductDiscontinuedQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductDiscontinued\Persistence; use Orm\Zed\ProductDiscontinued\Persistence\Base\SpyProductDiscontinuedQuery as BaseSpyProductDiscontinuedQuery; diff --git a/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorage.php b/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorage.php index a55eb8fd04..71efbed1cf 100644 --- a/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorage.php +++ b/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductDiscontinuedStorage\Persistence; use Orm\Zed\ProductDiscontinuedStorage\Persistence\Base\SpyProductDiscontinuedStorage as BaseSpyProductDiscontinuedStorage; diff --git a/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorageQuery.php b/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorageQuery.php index 9b2d542340..5f8688a9ff 100644 --- a/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorageQuery.php +++ b/src/Orm/Zed/ProductDiscontinuedStorage/Persistence/SpyProductDiscontinuedStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductDiscontinuedStorage\Persistence; use Orm\Zed\ProductDiscontinuedStorage\Persistence\Base\SpyProductDiscontinuedStorageQuery as BaseSpyProductDiscontinuedStorageQuery; diff --git a/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroup.php b/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroup.php index 32ee277e56..72ec491dca 100644 --- a/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroup.php +++ b/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductGroup\Persistence; use Spryker\Zed\ProductGroup\Persistence\Propel\AbstractSpyProductAbstractGroup as BaseSpyProductAbstractGroup; diff --git a/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroupQuery.php b/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroupQuery.php index 6e3539164b..ba031b92a7 100644 --- a/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroupQuery.php +++ b/src/Orm/Zed/ProductGroup/Persistence/SpyProductAbstractGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductGroup\Persistence; use Spryker\Zed\ProductGroup\Persistence\Propel\AbstractSpyProductAbstractGroupQuery as BaseSpyProductAbstractGroupQuery; diff --git a/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroup.php b/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroup.php index 5dad64ae01..f8c97c1690 100644 --- a/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroup.php +++ b/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductGroup\Persistence; use Spryker\Zed\ProductGroup\Persistence\Propel\AbstractSpyProductGroup as BaseSpyProductGroup; diff --git a/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroupQuery.php b/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroupQuery.php index 6054efd0b9..7dae6d56aa 100644 --- a/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroupQuery.php +++ b/src/Orm/Zed/ProductGroup/Persistence/SpyProductGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductGroup\Persistence; use Spryker\Zed\ProductGroup\Persistence\Propel\AbstractSpyProductGroupQuery as BaseSpyProductGroupQuery; diff --git a/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorage.php b/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorage.php index 84ae0e465a..f15ad371e3 100644 --- a/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorage.php +++ b/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductGroupStorage\Persistence; use Spryker\Zed\ProductGroupStorage\Persistence\Propel\AbstractSpyProductAbstractGroupStorage; diff --git a/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorageQuery.php b/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorageQuery.php index ad95a249ad..2c37bb36d5 100644 --- a/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorageQuery.php +++ b/src/Orm/Zed/ProductGroupStorage/Persistence/SpyProductAbstractGroupStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductGroupStorage\Persistence; use Spryker\Zed\ProductGroupStorage\Persistence\Propel\AbstractSpyProductAbstractGroupStorageQuery; diff --git a/src/Orm/Zed/ProductImage/Persistence/SpyProductImage.php b/src/Orm/Zed/ProductImage/Persistence/SpyProductImage.php index cf71938297..12bae26a2a 100644 --- a/src/Orm/Zed/ProductImage/Persistence/SpyProductImage.php +++ b/src/Orm/Zed/ProductImage/Persistence/SpyProductImage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImage\Persistence; use Orm\Zed\ProductImage\Persistence\Base\SpyProductImage as BaseSpyProductImage; diff --git a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageQuery.php b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageQuery.php index 11a7434efb..c91f7b0a7b 100644 --- a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageQuery.php +++ b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImage\Persistence; use Orm\Zed\ProductImage\Persistence\Base\SpyProductImageQuery as BaseSpyProductImageQuery; diff --git a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSet.php b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSet.php index 00a432fc55..6558fab1ff 100644 --- a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSet.php +++ b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSet.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImage\Persistence; use Orm\Zed\ProductImage\Persistence\Base\SpyProductImageSet as BaseSpyProductImageSet; diff --git a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetQuery.php b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetQuery.php index 69fa136dcd..49d4da526f 100644 --- a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetQuery.php +++ b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImage\Persistence; use Orm\Zed\ProductImage\Persistence\Base\SpyProductImageSetQuery as BaseSpyProductImageSetQuery; diff --git a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImage.php b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImage.php index 62b5296251..25ea26fe1c 100644 --- a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImage.php +++ b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImage\Persistence; use Orm\Zed\ProductImage\Persistence\Base\SpyProductImageSetToProductImage as BaseSpyProductImageSetToProductImage; diff --git a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImageQuery.php b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImageQuery.php index a300027fc6..7f7997d489 100644 --- a/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImageQuery.php +++ b/src/Orm/Zed/ProductImage/Persistence/SpyProductImageSetToProductImageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImage\Persistence; use Orm\Zed\ProductImage\Persistence\Base\SpyProductImageSetToProductImageQuery as BaseSpyProductImageSetToProductImageQuery; diff --git a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorage.php b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorage.php index d1fa74fe76..32da2b985b 100644 --- a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorage.php +++ b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImageStorage\Persistence; use Spryker\Zed\ProductImageStorage\Persistence\Propel\AbstractSpyProductAbstractImageStorage; diff --git a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorageQuery.php b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorageQuery.php index 049de3bbb3..6c5813933b 100644 --- a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorageQuery.php +++ b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductAbstractImageStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImageStorage\Persistence; use Spryker\Zed\ProductImageStorage\Persistence\Propel\AbstractSpyProductAbstractImageStorageQuery; diff --git a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorage.php b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorage.php index d80662fa5e..d654432c01 100644 --- a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorage.php +++ b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImageStorage\Persistence; use Spryker\Zed\ProductImageStorage\Persistence\Propel\AbstractSpyProductConcreteImageStorage; diff --git a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorageQuery.php b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorageQuery.php index 5c8e18b649..20dbff59e1 100644 --- a/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorageQuery.php +++ b/src/Orm/Zed/ProductImageStorage/Persistence/SpyProductConcreteImageStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductImageStorage\Persistence; use Spryker\Zed\ProductImageStorage\Persistence\Propel\AbstractSpyProductConcreteImageStorageQuery; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabel.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabel.php index a922ffcb1f..49395afe93 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabel.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabel.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabel as BaseSpyProductLabel; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributes.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributes.php index cd0a4f011c..1854ce79dc 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributes.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributes.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelLocalizedAttributes as BaseSpyProductLabelLocalizedAttributes; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributesQuery.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributesQuery.php index 947be42b31..8513cc9fd4 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributesQuery.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelLocalizedAttributesQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelLocalizedAttributesQuery as BaseSpyProductLabelLocalizedAttributesQuery; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstract.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstract.php index fdbb38d8d4..34a2bc3844 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstract.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstract.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelProductAbstract as BaseSpyProductLabelProductAbstract; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstractQuery.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstractQuery.php index cf6a5220cc..b6ad9e0b0b 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstractQuery.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelProductAbstractQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelProductAbstractQuery as BaseSpyProductLabelProductAbstractQuery; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelQuery.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelQuery.php index 2192425727..77a24b6b4c 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelQuery.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelQuery as BaseSpyProductLabelQuery; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStore.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStore.php index c72db2a2d6..ef1406ffe2 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStore.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelStore as BaseSpyProductLabelStore; diff --git a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStoreQuery.php b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStoreQuery.php index 4f4a664d5b..f8c3fb6d84 100644 --- a/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStoreQuery.php +++ b/src/Orm/Zed/ProductLabel/Persistence/SpyProductLabelStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabel\Persistence; use Spryker\Zed\ProductLabel\Persistence\Propel\AbstractSpyProductLabelStoreQuery as BaseSpyProductLabelStoreQuery; diff --git a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorage.php b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorage.php index 4eddb3c8f8..455766ca6e 100644 --- a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorage.php +++ b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabelStorage\Persistence; use Spryker\Zed\ProductLabelStorage\Persistence\Propel\AbstractSpyProductAbstractLabelStorage; diff --git a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorageQuery.php b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorageQuery.php index a4f283ad66..4ceb22bdbf 100644 --- a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorageQuery.php +++ b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductAbstractLabelStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabelStorage\Persistence; use Spryker\Zed\ProductLabelStorage\Persistence\Propel\AbstractSpyProductAbstractLabelStorageQuery; diff --git a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorage.php b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorage.php index 70562abb7b..4f75e40db1 100644 --- a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorage.php +++ b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabelStorage\Persistence; use Spryker\Zed\ProductLabelStorage\Persistence\Propel\AbstractSpyProductLabelDictionaryStorage; diff --git a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorageQuery.php b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorageQuery.php index dfbe770403..c056071561 100644 --- a/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorageQuery.php +++ b/src/Orm/Zed/ProductLabelStorage/Persistence/SpyProductLabelDictionaryStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductLabelStorage\Persistence; use Spryker\Zed\ProductLabelStorage\Persistence\Propel\AbstractSpyProductLabelDictionaryStorageQuery; diff --git a/src/Orm/Zed/ProductList/Persistence/SpyProductList.php b/src/Orm/Zed/ProductList/Persistence/SpyProductList.php index 30a0c1e0b1..20b3d4b74c 100644 --- a/src/Orm/Zed/ProductList/Persistence/SpyProductList.php +++ b/src/Orm/Zed/ProductList/Persistence/SpyProductList.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductList\Persistence; use Spryker\Zed\ProductList\Persistence\Propel\AbstractSpyProductList as BaseSpyProductList; diff --git a/src/Orm/Zed/ProductList/Persistence/SpyProductListCategory.php b/src/Orm/Zed/ProductList/Persistence/SpyProductListCategory.php index 180d566c83..20528315c6 100644 --- a/src/Orm/Zed/ProductList/Persistence/SpyProductListCategory.php +++ b/src/Orm/Zed/ProductList/Persistence/SpyProductListCategory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductList\Persistence; use Spryker\Zed\ProductList\Persistence\Propel\AbstractSpyProductListCategory as BaseSpyProductListCategory; diff --git a/src/Orm/Zed/ProductList/Persistence/SpyProductListCategoryQuery.php b/src/Orm/Zed/ProductList/Persistence/SpyProductListCategoryQuery.php index 284f42d2ee..1a95315e9a 100644 --- a/src/Orm/Zed/ProductList/Persistence/SpyProductListCategoryQuery.php +++ b/src/Orm/Zed/ProductList/Persistence/SpyProductListCategoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductList\Persistence; use Spryker\Zed\ProductList\Persistence\Propel\AbstractSpyProductListCategoryQuery as BaseSpyProductListCategoryQuery; diff --git a/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcrete.php b/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcrete.php index fcd978bfed..2771806058 100644 --- a/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcrete.php +++ b/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcrete.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductList\Persistence; use Spryker\Zed\ProductList\Persistence\Propel\AbstractSpyProductListProductConcrete as BaseSpyProductListProductConcrete; diff --git a/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcreteQuery.php b/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcreteQuery.php index 8174082a46..f45c457018 100644 --- a/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcreteQuery.php +++ b/src/Orm/Zed/ProductList/Persistence/SpyProductListProductConcreteQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductList\Persistence; use Spryker\Zed\ProductList\Persistence\Propel\AbstractSpyProductListProductConcreteQuery as BaseSpyProductListProductConcreteQuery; diff --git a/src/Orm/Zed/ProductList/Persistence/SpyProductListQuery.php b/src/Orm/Zed/ProductList/Persistence/SpyProductListQuery.php index e5c7e6ece8..4578b81209 100644 --- a/src/Orm/Zed/ProductList/Persistence/SpyProductListQuery.php +++ b/src/Orm/Zed/ProductList/Persistence/SpyProductListQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductList\Persistence; use Spryker\Zed\ProductList\Persistence\Propel\AbstractSpyProductListQuery as BaseSpyProductListQuery; diff --git a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorage.php b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorage.php index 1ce931f84a..98be90efea 100644 --- a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorage.php +++ b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductListStorage\Persistence; use Spryker\Zed\ProductListStorage\Persistence\Propel\AbstractSpyProductAbstractProductListStorage as BaseSpyProductAbstractProductListStorage; diff --git a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorageQuery.php b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorageQuery.php index b4f63bd13e..d53c8f24ee 100644 --- a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorageQuery.php +++ b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductAbstractProductListStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductListStorage\Persistence; use Spryker\Zed\ProductListStorage\Persistence\Propel\AbstractSpyProductAbstractProductListStorageQuery as BaseSpyProductAbstractProductListStorageQuery; diff --git a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorage.php b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorage.php index 80a912e81e..49ce7d3224 100644 --- a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorage.php +++ b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductListStorage\Persistence; use Spryker\Zed\ProductListStorage\Persistence\Propel\AbstractSpyProductConcreteProductListStorage as BaseSpyProductConcreteProductListStorage; diff --git a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorageQuery.php b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorageQuery.php index 9679a35580..a8d5bd0a7a 100644 --- a/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorageQuery.php +++ b/src/Orm/Zed/ProductListStorage/Persistence/SpyProductConcreteProductListStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductListStorage\Persistence; use Spryker\Zed\ProductListStorage\Persistence\Propel\AbstractSpyProductConcreteProductListStorageQuery as BaseSpyProductConcreteProductListStorageQuery; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroup.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroup.php index 10fd52f4a0..57fef81e21 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroup.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductAbstractProductOptionGroup as BaseSpyProductAbstractProductOptionGroup; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroupQuery.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroupQuery.php index b023228516..7e403e733b 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroupQuery.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductAbstractProductOptionGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductAbstractProductOptionGroupQuery as BaseSpyProductAbstractProductOptionGroupQuery; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroup.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroup.php index 8d64c921bb..64f790858f 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroup.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductOptionGroup as BaseSpyProductOptionGroup; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroupQuery.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroupQuery.php index 394e6b3b0b..be507c6441 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroupQuery.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductOptionGroupQuery as BaseSpyProductOptionGroupQuery; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValue.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValue.php index fc1d1b82f3..57c2468a73 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValue.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValue.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductOptionValue as BaseSpyProductOptionValue; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePrice.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePrice.php index a9749882d6..3bcd32e3a9 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePrice.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePrice.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductOptionValuePrice as BaseSpyProductOptionValuePrice; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePriceQuery.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePriceQuery.php index 605d9099bd..783f75d25d 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePriceQuery.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValuePriceQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductOptionValuePriceQuery as BaseSpyProductOptionValuePriceQuery; diff --git a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValueQuery.php b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValueQuery.php index 956d218fcb..d1215acf6a 100644 --- a/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValueQuery.php +++ b/src/Orm/Zed/ProductOption/Persistence/SpyProductOptionValueQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOption\Persistence; use Spryker\Zed\ProductOption\Persistence\Propel\AbstractSpyProductOptionValueQuery as BaseSpyProductOptionValueQuery; diff --git a/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorage.php b/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorage.php index b7d0432bc7..eef9504af4 100644 --- a/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorage.php +++ b/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOptionStorage\Persistence; use Spryker\Zed\ProductOptionStorage\Persistence\Propel\AbstractSpyProductAbstractOptionStorage; diff --git a/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorageQuery.php b/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorageQuery.php index a51b622e84..c721873540 100644 --- a/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorageQuery.php +++ b/src/Orm/Zed/ProductOptionStorage/Persistence/SpyProductAbstractOptionStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductOptionStorage\Persistence; use Spryker\Zed\ProductOptionStorage\Persistence\Propel\AbstractSpyProductAbstractOptionStorageQuery; diff --git a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearch.php b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearch.php index f0b3714239..f4f5aa9c0a 100644 --- a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearch.php +++ b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductPageSearch\Persistence; use Spryker\Zed\ProductPageSearch\Persistence\Propel\AbstractSpyProductAbstractPageSearch; diff --git a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearchQuery.php b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearchQuery.php index 6f00b159c8..7631472729 100644 --- a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearchQuery.php +++ b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductAbstractPageSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductPageSearch\Persistence; use Spryker\Zed\ProductPageSearch\Persistence\Propel\AbstractSpyProductAbstractPageSearchQuery; diff --git a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearch.php b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearch.php index ac91d5e248..1897826e13 100644 --- a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearch.php +++ b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductPageSearch\Persistence; use Spryker\Zed\ProductPageSearch\Persistence\Propel\AbstractSpyProductConcretePageSearch as BaseSpyProductConcretePageSearch; diff --git a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearchQuery.php b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearchQuery.php index 4bbafa3e92..5e810fa0fb 100644 --- a/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearchQuery.php +++ b/src/Orm/Zed/ProductPageSearch/Persistence/SpyProductConcretePageSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductPageSearch\Persistence; use Spryker\Zed\ProductPageSearch\Persistence\Propel\AbstractSpyProductConcretePageSearchQuery as BaseSpyProductConcretePageSearchQuery; diff --git a/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantity.php b/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantity.php index 6c903fb6bd..f8854dabd2 100644 --- a/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantity.php +++ b/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantity.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductQuantity\Persistence; use Spryker\Zed\ProductQuantity\Persistence\Propel\AbstractSpyProductQuantity; diff --git a/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantityQuery.php b/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantityQuery.php index 9958e6aa09..122fac80b2 100644 --- a/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantityQuery.php +++ b/src/Orm/Zed/ProductQuantity/Persistence/SpyProductQuantityQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductQuantity\Persistence; use Spryker\Zed\ProductQuantity\Persistence\Propel\AbstractSpyProductQuantityQuery; diff --git a/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorage.php b/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorage.php index 105054d662..694b44768a 100644 --- a/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorage.php +++ b/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductQuantityStorage\Persistence; use Spryker\Zed\ProductQuantityStorage\Persistence\Propel\AbstractSpyProductQuantityStorage; diff --git a/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorageQuery.php b/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorageQuery.php index 29c9c2b6d3..0f5cac5c0b 100644 --- a/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorageQuery.php +++ b/src/Orm/Zed/ProductQuantityStorage/Persistence/SpyProductQuantityStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductQuantityStorage\Persistence; use Spryker\Zed\ProductQuantityStorage\Persistence\Propel\AbstractSpyProductQuantityStorageQuery; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelation.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelation.php index 71481789a9..aca88d03e7 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelation.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelation as BaseSpyProductRelation; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstract.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstract.php index ab5f36cdf5..173c84f1a0 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstract.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstract.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationProductAbstract as BaseSpyProductRelationProductAbstract; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstractQuery.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstractQuery.php index 7f2f85124b..d66694d3c4 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstractQuery.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationProductAbstractQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationProductAbstractQuery as BaseSpyProductRelationProductAbstractQuery; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationQuery.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationQuery.php index 9549cd46b9..4a5e14ba78 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationQuery.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationQuery as BaseSpyProductRelationQuery; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStore.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStore.php index fa9fd32809..7ade2ed635 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStore.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationStore as BaseSpyProductRelationStore; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStoreQuery.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStoreQuery.php index 80464e6357..3b7be658a2 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStoreQuery.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationStoreQuery as BaseSpyProductRelationStoreQuery; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationType.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationType.php index 6ac5d4a88d..a49a4760af 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationType.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationType as BaseSpyProductRelationType; diff --git a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationTypeQuery.php b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationTypeQuery.php index 654eeeef6c..746afdb0f7 100644 --- a/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationTypeQuery.php +++ b/src/Orm/Zed/ProductRelation/Persistence/SpyProductRelationTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelation\Persistence; use Spryker\Zed\ProductRelation\Persistence\Propel\AbstractSpyProductRelationTypeQuery as BaseSpyProductRelationTypeQuery; diff --git a/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorage.php b/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorage.php index 7b1d998cc9..c30d0b9955 100644 --- a/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorage.php +++ b/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelationStorage\Persistence; use Spryker\Zed\ProductRelationStorage\Persistence\Propel\AbstractSpyProductAbstractRelationStorage; diff --git a/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorageQuery.php b/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorageQuery.php index de71e6cfb4..ce24ea7611 100644 --- a/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorageQuery.php +++ b/src/Orm/Zed/ProductRelationStorage/Persistence/SpyProductAbstractRelationStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductRelationStorage\Persistence; use Spryker\Zed\ProductRelationStorage\Persistence\Propel\AbstractSpyProductAbstractRelationStorageQuery; diff --git a/src/Orm/Zed/ProductReview/Persistence/SpyProductReview.php b/src/Orm/Zed/ProductReview/Persistence/SpyProductReview.php index c4388cf9cf..b5e271e037 100644 --- a/src/Orm/Zed/ProductReview/Persistence/SpyProductReview.php +++ b/src/Orm/Zed/ProductReview/Persistence/SpyProductReview.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductReview\Persistence; use Spryker\Zed\ProductReview\Persistence\Propel\AbstractSpyProductReview as BaseSpyProductReview; diff --git a/src/Orm/Zed/ProductReview/Persistence/SpyProductReviewQuery.php b/src/Orm/Zed/ProductReview/Persistence/SpyProductReviewQuery.php index f71102b658..d3dda6a9b0 100644 --- a/src/Orm/Zed/ProductReview/Persistence/SpyProductReviewQuery.php +++ b/src/Orm/Zed/ProductReview/Persistence/SpyProductReviewQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductReview\Persistence; use Spryker\Zed\ProductReview\Persistence\Propel\AbstractSpyProductReviewQuery as BaseSpyProductReviewQuery; diff --git a/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearch.php b/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearch.php index fc2f5310fc..add4a98b74 100644 --- a/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearch.php +++ b/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductReviewSearch\Persistence; use Spryker\Zed\ProductReviewSearch\Persistence\Propel\AbstractSpyProductReviewSearch; diff --git a/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearchQuery.php b/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearchQuery.php index 23fec00d23..171b9f722c 100644 --- a/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearchQuery.php +++ b/src/Orm/Zed/ProductReviewSearch/Persistence/SpyProductReviewSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductReviewSearch\Persistence; use Spryker\Zed\ProductReviewSearch\Persistence\Propel\AbstractSpyProductReviewSearchQuery; diff --git a/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorage.php b/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorage.php index 9eb7095dec..1fb305d7f9 100644 --- a/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorage.php +++ b/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductReviewStorage\Persistence; use Spryker\Zed\ProductReviewStorage\Persistence\Propel\AbstractSpyProductAbstractReviewStorage; diff --git a/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorageQuery.php b/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorageQuery.php index d1fe8e0d46..9a181e6a47 100644 --- a/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorageQuery.php +++ b/src/Orm/Zed/ProductReviewStorage/Persistence/SpyProductAbstractReviewStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductReviewStorage\Persistence; use Spryker\Zed\ProductReviewStorage\Persistence\Propel\AbstractSpyProductAbstractReviewStorageQuery; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearch.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearch.php index cd7017562f..08bc2f5f5c 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearch.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Orm\Zed\ProductSearch\Persistence\Base\SpyProductSearch as BaseSpyProductSearch; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttribute.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttribute.php index 21b8a73760..4b4c66f78b 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttribute.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttribute.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttribute as BaseSpyProductSearchAttribute; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchive.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchive.php index 82dd746798..f5fa05b8f8 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchive.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeArchive as BaseSpyProductSearchAttributeArchive; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchiveQuery.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchiveQuery.php index 2bf7ba101f..7eee9c20db 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchiveQuery.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeArchiveQuery as BaseSpyProductSearchAttributeArchiveQuery; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMap.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMap.php index b3bd977bd2..e4f33026bd 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMap.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeMap as BaseSpyProductSearchAttributeMap; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchive.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchive.php index e07f568e30..9d1901754d 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchive.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeMapArchive as BaseSpyProductSearchAttributeMapArchive; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchiveQuery.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchiveQuery.php index 37e3391655..c910a5d9d2 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchiveQuery.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeMapArchiveQuery as BaseSpyProductSearchAttributeMapArchiveQuery; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapQuery.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapQuery.php index e62b11ce18..84d06b5e6a 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapQuery.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeMapQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeMapQuery as BaseSpyProductSearchAttributeMapQuery; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeQuery.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeQuery.php index a58cc7aa08..ce429c732d 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeQuery.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchAttributeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Spryker\Zed\ProductSearch\Persistence\Propel\AbstractSpyProductSearchAttributeQuery as BaseSpyProductSearchAttributeQuery; diff --git a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchQuery.php b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchQuery.php index 0d5b755501..7cd72e7307 100644 --- a/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchQuery.php +++ b/src/Orm/Zed/ProductSearch/Persistence/SpyProductSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearch\Persistence; use Orm\Zed\ProductSearch\Persistence\Base\SpyProductSearchQuery as BaseSpyProductSearchQuery; diff --git a/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorage.php b/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorage.php index b1ba4cfe87..d78c39f8fd 100644 --- a/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorage.php +++ b/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearchConfigStorage\Persistence; use Spryker\Zed\ProductSearchConfigStorage\Persistence\Propel\AbstractSpyProductSearchConfigStorage; diff --git a/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorageQuery.php b/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorageQuery.php index 65e71eb1ae..b999dd5eaf 100644 --- a/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorageQuery.php +++ b/src/Orm/Zed/ProductSearchConfigStorage/Persistence/SpyProductSearchConfigStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSearchConfigStorage\Persistence; use Spryker\Zed\ProductSearchConfigStorage\Persistence\Propel\AbstractSpyProductSearchConfigStorageQuery; diff --git a/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSet.php b/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSet.php index 2e7a63cfce..26377c7080 100644 --- a/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSet.php +++ b/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSet.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSet\Persistence; use Spryker\Zed\ProductSet\Persistence\Propel\AbstractSpyProductAbstractSet as BaseSpyProductAbstractSet; diff --git a/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSetQuery.php b/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSetQuery.php index fc29bd6055..196dd124e4 100644 --- a/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSetQuery.php +++ b/src/Orm/Zed/ProductSet/Persistence/SpyProductAbstractSetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSet\Persistence; use Spryker\Zed\ProductSet\Persistence\Propel\AbstractSpyProductAbstractSetQuery as BaseSpyProductAbstractSetQuery; diff --git a/src/Orm/Zed/ProductSet/Persistence/SpyProductSet.php b/src/Orm/Zed/ProductSet/Persistence/SpyProductSet.php index 458f6d9776..20b52c0ed3 100644 --- a/src/Orm/Zed/ProductSet/Persistence/SpyProductSet.php +++ b/src/Orm/Zed/ProductSet/Persistence/SpyProductSet.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSet\Persistence; use Spryker\Zed\ProductSet\Persistence\Propel\AbstractSpyProductSet as BaseSpyProductSet; diff --git a/src/Orm/Zed/ProductSet/Persistence/SpyProductSetData.php b/src/Orm/Zed/ProductSet/Persistence/SpyProductSetData.php index 38be16c4bc..6187e4c3f2 100644 --- a/src/Orm/Zed/ProductSet/Persistence/SpyProductSetData.php +++ b/src/Orm/Zed/ProductSet/Persistence/SpyProductSetData.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSet\Persistence; use Spryker\Zed\ProductSet\Persistence\Propel\AbstractSpyProductSetData as BaseSpyProductSetData; diff --git a/src/Orm/Zed/ProductSet/Persistence/SpyProductSetDataQuery.php b/src/Orm/Zed/ProductSet/Persistence/SpyProductSetDataQuery.php index 146ca5539b..d9b40c1652 100644 --- a/src/Orm/Zed/ProductSet/Persistence/SpyProductSetDataQuery.php +++ b/src/Orm/Zed/ProductSet/Persistence/SpyProductSetDataQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSet\Persistence; use Spryker\Zed\ProductSet\Persistence\Propel\AbstractSpyProductSetDataQuery as BaseSpyProductSetDataQuery; diff --git a/src/Orm/Zed/ProductSet/Persistence/SpyProductSetQuery.php b/src/Orm/Zed/ProductSet/Persistence/SpyProductSetQuery.php index d9f0d29ce6..e346db2be1 100644 --- a/src/Orm/Zed/ProductSet/Persistence/SpyProductSetQuery.php +++ b/src/Orm/Zed/ProductSet/Persistence/SpyProductSetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSet\Persistence; use Spryker\Zed\ProductSet\Persistence\Propel\AbstractSpyProductSetQuery as BaseSpyProductSetQuery; diff --git a/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearch.php b/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearch.php index 80f095eefe..6438a16035 100644 --- a/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearch.php +++ b/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSetPageSearch\Persistence; use Spryker\Zed\ProductSetPageSearch\Persistence\Propel\AbstractSpyProductSetPageSearch; diff --git a/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearchQuery.php b/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearchQuery.php index 6ede174c0f..38d25dbf58 100644 --- a/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearchQuery.php +++ b/src/Orm/Zed/ProductSetPageSearch/Persistence/SpyProductSetPageSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSetPageSearch\Persistence; use Spryker\Zed\ProductSetPageSearch\Persistence\Propel\AbstractSpyProductSetPageSearchQuery; diff --git a/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorage.php b/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorage.php index c99d9a99b8..5f4f2e5e51 100644 --- a/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorage.php +++ b/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSetStorage\Persistence; use Spryker\Zed\ProductSetStorage\Persistence\Propel\AbstractSpyProductSetStorage; diff --git a/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorageQuery.php b/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorageQuery.php index 268c5950ef..b2965eb933 100644 --- a/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorageQuery.php +++ b/src/Orm/Zed/ProductSetStorage/Persistence/SpyProductSetStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductSetStorage\Persistence; use Spryker\Zed\ProductSetStorage\Persistence\Propel\AbstractSpyProductSetStorageQuery; diff --git a/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorage.php b/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorage.php index 983bec3a2b..d68298f3be 100644 --- a/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorage.php +++ b/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductStorage\Persistence; use Spryker\Zed\ProductStorage\Persistence\Propel\AbstractSpyProductAbstractStorage; diff --git a/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorageQuery.php b/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorageQuery.php index 5232ccd2ac..ffc38a1c33 100644 --- a/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorageQuery.php +++ b/src/Orm/Zed/ProductStorage/Persistence/SpyProductAbstractStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductStorage\Persistence; use Spryker\Zed\ProductStorage\Persistence\Propel\AbstractSpyProductAbstractStorageQuery; diff --git a/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorage.php b/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorage.php index 453c02b682..54f981ce76 100644 --- a/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorage.php +++ b/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductStorage\Persistence; use Spryker\Zed\ProductStorage\Persistence\Propel\AbstractSpyProductConcreteStorage; diff --git a/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorageQuery.php b/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorageQuery.php index 35bca82e0a..3dec7e4cf3 100644 --- a/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorageQuery.php +++ b/src/Orm/Zed/ProductStorage/Persistence/SpyProductConcreteStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductStorage\Persistence; use Spryker\Zed\ProductStorage\Persistence\Propel\AbstractSpyProductConcreteStorageQuery; diff --git a/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidity.php b/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidity.php index 2aac4c447e..aae6e8c616 100644 --- a/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidity.php +++ b/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidity.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductValidity\Persistence; use Spryker\Zed\ProductValidity\Persistence\Propel\AbstractSpyProductValidity; diff --git a/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidityQuery.php b/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidityQuery.php index 68cbc9efb0..d8f224beaa 100644 --- a/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidityQuery.php +++ b/src/Orm/Zed/ProductValidity/Persistence/SpyProductValidityQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ProductValidity\Persistence; use Spryker\Zed\ProductValidity\Persistence\Propel\AbstractSpyProductValidityQuery; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheck.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheck.php index 873e4253d5..fb822a1438 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheck.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheck.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheck\Persistence; use Spryker\Zed\PublishAndSynchronizeHealthCheck\Persistence\Propel\AbstractSpyPublishAndSynchronizeHealthCheck as BasePublishAndSynchronizeHealthCheck; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheckQuery.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheckQuery.php index 2e6cfb9521..cede6f6d0c 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheckQuery.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/PublishAndSynchronizeHealthCheckQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheck\Persistence; use Spryker\Zed\PublishAndSynchronizeHealthCheck\Persistence\Propel\AbstractSpyPublishAndSynchronizeHealthCheckQuery as BasePublishAndSynchronizeHealthCheckQuery; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheck.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheck.php index 5a28005d46..1ccb3f4997 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheck.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheck.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheck\Persistence; use Orm\Zed\PublishAndSynchronizeHealthCheck\Persistence\Base\SpyPublishAndSynchronizeHealthCheck as BaseSpyPublishAndSynchronizeHealthCheck; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheckQuery.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheckQuery.php index 184b83367a..225b7fcc84 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheckQuery.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheck/Persistence/SpyPublishAndSynchronizeHealthCheckQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheck\Persistence; use Orm\Zed\PublishAndSynchronizeHealthCheck\Persistence\Base\SpyPublishAndSynchronizeHealthCheckQuery as BaseSpyPublishAndSynchronizeHealthCheckQuery; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearch.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearch.php index cfa67888bc..83e469ff08 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearch.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheckSearch\Persistence; use Orm\Zed\PublishAndSynchronizeHealthCheckSearch\Persistence\Base\SpyPublishAndSynchronizeHealthCheckSearch as BaseSpyPublishAndSynchronizeHealthCheckSearch; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearchQuery.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearchQuery.php index 0df82ad564..3b005f0284 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearchQuery.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheckSearch/Persistence/SpyPublishAndSynchronizeHealthCheckSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheckSearch\Persistence; use Orm\Zed\PublishAndSynchronizeHealthCheckSearch\Persistence\Base\SpyPublishAndSynchronizeHealthCheckSearchQuery as BaseSpyPublishAndSynchronizeHealthCheckSearchQuery; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorage.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorage.php index c002e51afb..2af8f7c627 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorage.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheckStorage\Persistence; use Orm\Zed\PublishAndSynchronizeHealthCheckStorage\Persistence\Base\SpyPublishAndSynchronizeHealthCheckStorage as BaseSpyPublishAndSynchronizeHealthCheckStorage; diff --git a/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorageQuery.php b/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorageQuery.php index 2af6c20695..61bd5c4637 100644 --- a/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorageQuery.php +++ b/src/Orm/Zed/PublishAndSynchronizeHealthCheckStorage/Persistence/SpyPublishAndSynchronizeHealthCheckStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PublishAndSynchronizeHealthCheckStorage\Persistence; use Orm\Zed\PublishAndSynchronizeHealthCheckStorage\Persistence\Base\SpyPublishAndSynchronizeHealthCheckStorageQuery as BaseSpyPublishAndSynchronizeHealthCheckStorageQuery; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotification.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotification.php index 1323430547..86d71ff599 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotification.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotification.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotification as BaseSpyPushNotification; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroup.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroup.php index 65f77e80b5..cf313dba7d 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroup.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroup.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationGroup as BaseSpyPushNotificationGroup; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroupQuery.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroupQuery.php index 35e93c43d6..3bc2607d11 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroupQuery.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationGroupQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationGroupQuery as BaseSpyPushNotificationGroupQuery; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProvider.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProvider.php index ee24fa080f..d4b9420ccb 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProvider.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationProvider as BaseSpyPushNotificationProvider; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProviderQuery.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProviderQuery.php index f90c9b8ad1..e2dd1f8372 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProviderQuery.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationProviderQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationProviderQuery as BaseSpyPushNotificationProviderQuery; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationQuery.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationQuery.php index 4ea9193fd0..cac4f3214d 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationQuery.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationQuery as BaseSpyPushNotificationQuery; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscription.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscription.php index de6bcb7ad3..03dadf18ce 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscription.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscription.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationSubscription as BaseSpyPushNotificationSubscription; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLog.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLog.php index 9160876725..4713dc2314 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLog.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLog.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationSubscriptionDeliveryLog as BaseSpyPushNotificationSubscriptionDeliveryLog; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLogQuery.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLogQuery.php index cd15133d3e..ded322f725 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLogQuery.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionDeliveryLogQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationSubscriptionDeliveryLogQuery as BaseSpyPushNotificationSubscriptionDeliveryLogQuery; diff --git a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionQuery.php b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionQuery.php index b3f70a23b5..51d4c0c87a 100644 --- a/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionQuery.php +++ b/src/Orm/Zed/PushNotification/Persistence/SpyPushNotificationSubscriptionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\PushNotification\Persistence; use Spryker\Zed\PushNotification\Persistence\Propel\AbstractSpyPushNotificationSubscriptionQuery as BaseSpyPushNotificationSubscriptionQuery; diff --git a/src/Orm/Zed/Queue/Persistence/SpyQueueProcess.php b/src/Orm/Zed/Queue/Persistence/SpyQueueProcess.php index e868094f7a..ddcc1967f6 100644 --- a/src/Orm/Zed/Queue/Persistence/SpyQueueProcess.php +++ b/src/Orm/Zed/Queue/Persistence/SpyQueueProcess.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Queue\Persistence; use Orm\Zed\Queue\Persistence\Base\SpyQueueProcess as BaseSpyQueueProcess; diff --git a/src/Orm/Zed/Queue/Persistence/SpyQueueProcessQuery.php b/src/Orm/Zed/Queue/Persistence/SpyQueueProcessQuery.php index ed543be90a..5c2c534425 100644 --- a/src/Orm/Zed/Queue/Persistence/SpyQueueProcessQuery.php +++ b/src/Orm/Zed/Queue/Persistence/SpyQueueProcessQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Queue\Persistence; use Orm\Zed\Queue\Persistence\Base\SpyQueueProcessQuery as BaseSpyQueueProcessQuery; diff --git a/src/Orm/Zed/Quote/Persistence/SpyQuote.php b/src/Orm/Zed/Quote/Persistence/SpyQuote.php index 275e7417b4..f6752e577a 100644 --- a/src/Orm/Zed/Quote/Persistence/SpyQuote.php +++ b/src/Orm/Zed/Quote/Persistence/SpyQuote.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Quote\Persistence; use Spryker\Zed\Quote\Persistence\Propel\AbstractSpyQuote as BaseSpyQuote; diff --git a/src/Orm/Zed/Quote/Persistence/SpyQuoteQuery.php b/src/Orm/Zed/Quote/Persistence/SpyQuoteQuery.php index 312099a9fb..0441ac3638 100644 --- a/src/Orm/Zed/Quote/Persistence/SpyQuoteQuery.php +++ b/src/Orm/Zed/Quote/Persistence/SpyQuoteQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Quote\Persistence; use Spryker\Zed\Quote\Persistence\Propel\AbstractSpyQuoteQuery as BaseSpyQuoteQuery; diff --git a/src/Orm/Zed/Refund/Persistence/SpyRefund.php b/src/Orm/Zed/Refund/Persistence/SpyRefund.php index 84f3c64382..5f57be7a19 100644 --- a/src/Orm/Zed/Refund/Persistence/SpyRefund.php +++ b/src/Orm/Zed/Refund/Persistence/SpyRefund.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Refund\Persistence; use Spryker\Zed\Refund\Persistence\Propel\AbstractSpyRefund as BaseSpyRefund; diff --git a/src/Orm/Zed/Refund/Persistence/SpyRefundQuery.php b/src/Orm/Zed/Refund/Persistence/SpyRefundQuery.php index 18c3b51e10..6fc520388b 100644 --- a/src/Orm/Zed/Refund/Persistence/SpyRefundQuery.php +++ b/src/Orm/Zed/Refund/Persistence/SpyRefundQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Refund\Persistence; use Spryker\Zed\Refund\Persistence\Propel\AbstractSpyRefundQuery as BaseSpyRefundQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesDiscount.php b/src/Orm/Zed/Sales/Persistence/SpySalesDiscount.php index 7a28b8e5db..e3d1eaab45 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesDiscount.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesDiscount.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Orm\Zed\Sales\Persistence\Base\SpySalesDiscount as BaseSpySalesDiscount; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCode.php b/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCode.php index 870ae82d3c..648c2985da 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCode.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCode.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Orm\Zed\Sales\Persistence\Base\SpySalesDiscountCode as BaseSpySalesDiscountCode; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCodeQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCodeQuery.php index 501db91bfa..b9bc3bb676 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCodeQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesDiscountCodeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Orm\Zed\Sales\Persistence\Base\SpySalesDiscountCodeQuery as BaseSpySalesDiscountCodeQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesDiscountQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesDiscountQuery.php index 7e0a618b15..a0f3936f0a 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesDiscountQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesDiscountQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Orm\Zed\Sales\Persistence\Base\SpySalesDiscountQuery as BaseSpySalesDiscountQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesExpense.php b/src/Orm/Zed/Sales/Persistence/SpySalesExpense.php index b216f6000e..9831bb4a9b 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesExpense.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesExpense.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesExpense as BaseSpySalesExpense; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesExpenseQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesExpenseQuery.php index 90c0154092..637744fb21 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesExpenseQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesExpenseQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesExpenseQuery as BaseSpySalesExpenseQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrder.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrder.php index 175063d91a..ecdf75b9a5 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrder.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrder.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrder as BaseSpySalesOrder; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddress.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddress.php index 1c262b6e3a..5bf0ba2267 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddress.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddress.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderAddress as BaseSpySalesOrderAddress; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistory.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistory.php index c230b6d67a..864000ccd7 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistory.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderAddressHistory as BaseSpySalesOrderAddressHistory; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistoryQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistoryQuery.php index a6c5bb3fab..bc4a006c88 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistoryQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressHistoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderAddressHistoryQuery as BaseSpySalesOrderAddressHistoryQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressQuery.php index 0e385f8ede..3a7a075045 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderAddressQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderAddressQuery as BaseSpySalesOrderAddressQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderComment.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderComment.php index 4d7c898932..b94ba36437 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderComment.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderComment.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderComment as BaseSpySalesOrderComment; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderCommentQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderCommentQuery.php index 7e1074a3f5..3d677d7404 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderCommentQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderCommentQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderCommentQuery as BaseSpySalesOrderCommentQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItem.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItem.php index 236e64de4e..349f9c13cd 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItem.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderItem as BaseSpySalesOrderItem; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCard.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCard.php index d1994f4ff5..07d0966c38 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCard.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCard.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Orm\Zed\Sales\Persistence\Base\SpySalesOrderItemGiftCard as BaseSpySalesOrderItemGiftCard; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCardQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCardQuery.php index b35ec09d73..4286543335 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCardQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemGiftCardQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Orm\Zed\Sales\Persistence\Base\SpySalesOrderItemGiftCardQuery as BaseSpySalesOrderItemGiftCardQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadata.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadata.php index e027c33171..76840cf616 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadata.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadata.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderItemMetadata as BaseSpySalesOrderItemMetadata; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadataQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadataQuery.php index 1e7347d090..0f923ac5dd 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadataQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemMetadataQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderItemMetadataQuery as BaseSpySalesOrderItemMetadataQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOption.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOption.php index b6af4ce56c..471a16624e 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOption.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOption.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderItemOption as BaseSpySalesOrderItemOption; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOptionQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOptionQuery.php index 8e047a0eef..59b2afc620 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOptionQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemOptionQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderItemOptionQuery as BaseSpySalesOrderItemOptionQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemQuery.php index 25892ab839..90f6f1f9d2 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderItemQuery as BaseSpySalesOrderItemQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderNote.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderNote.php index 084884ee50..b37ed76d04 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderNote.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderNote.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderNote as BaseSpySalesOrderNote; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderNoteQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderNoteQuery.php index 33e0e45984..dfa9032585 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderNoteQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderNoteQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderNoteQuery as BaseSpySalesOrderNoteQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderQuery.php index 61e30562a6..33e746965d 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderQuery as BaseSpySalesOrderQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotals.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotals.php index 7869dec173..b02166cc90 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotals.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotals.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderTotals as BaseSpySalesOrderTotals; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotalsQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotalsQuery.php index 1d0b9a23b0..6812e0a2fb 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotalsQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesOrderTotalsQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesOrderTotalsQuery as BaseSpySalesOrderTotalsQuery; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesShipment.php b/src/Orm/Zed/Sales/Persistence/SpySalesShipment.php index dfc2c1fbf8..4c0dac7698 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesShipment.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesShipment.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesShipment as BaseSpySalesShipment; diff --git a/src/Orm/Zed/Sales/Persistence/SpySalesShipmentQuery.php b/src/Orm/Zed/Sales/Persistence/SpySalesShipmentQuery.php index d42a317f63..18cd882942 100644 --- a/src/Orm/Zed/Sales/Persistence/SpySalesShipmentQuery.php +++ b/src/Orm/Zed/Sales/Persistence/SpySalesShipmentQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Sales\Persistence; use Spryker\Zed\Sales\Persistence\Propel\AbstractSpySalesShipmentQuery as BaseSpySalesShipmentQuery; diff --git a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundle.php b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundle.php index c06711eee4..d967675ee8 100644 --- a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundle.php +++ b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundle.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesConfigurableBundle\Persistence; use Spryker\Zed\SalesConfigurableBundle\Persistence\Propel\AbstractSpySalesOrderConfiguredBundle as BaseSpySalesOrderConfiguredBundle; diff --git a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItem.php b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItem.php index 5b950e104d..33a91cdbe1 100644 --- a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItem.php +++ b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesConfigurableBundle\Persistence; use Spryker\Zed\SalesConfigurableBundle\Persistence\Propel\AbstractSpySalesOrderConfiguredBundleItem as BaseSpySalesOrderConfiguredBundleItem; diff --git a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItemQuery.php b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItemQuery.php index f5ba8ffd15..38b8d2d066 100644 --- a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItemQuery.php +++ b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesConfigurableBundle\Persistence; use Spryker\Zed\SalesConfigurableBundle\Persistence\Propel\AbstractSpySalesOrderConfiguredBundleItemQuery as BaseSpySalesOrderConfiguredBundleItemQuery; diff --git a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleQuery.php b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleQuery.php index b7fed7f00e..3afb48f2ec 100644 --- a/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleQuery.php +++ b/src/Orm/Zed/SalesConfigurableBundle/Persistence/SpySalesOrderConfiguredBundleQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesConfigurableBundle\Persistence; use Spryker\Zed\SalesConfigurableBundle\Persistence\Propel\AbstractSpySalesOrderConfiguredBundleQuery as BaseSpySalesOrderConfiguredBundleQuery; diff --git a/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoice.php b/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoice.php index ed079979f3..5976bd30f4 100644 --- a/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoice.php +++ b/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoice.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesInvoice\Persistence; use Spryker\Zed\SalesInvoice\Persistence\Propel\AbstractSpySalesOrderInvoice as BaseSpySalesOrderInvoice; diff --git a/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoiceQuery.php b/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoiceQuery.php index 71d0f7dd74..caae9dccf9 100644 --- a/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoiceQuery.php +++ b/src/Orm/Zed/SalesInvoice/Persistence/SpySalesOrderInvoiceQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesInvoice\Persistence; use Spryker\Zed\SalesInvoice\Persistence\Propel\AbstractSpySalesOrderInvoiceQuery as BaseSpySalesOrderInvoiceQuery; diff --git a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThreshold.php b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThreshold.php index 1236b0d2af..9d828678c0 100644 --- a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThreshold.php +++ b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThreshold.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesOrderThreshold\Persistence; use Spryker\Zed\SalesOrderThreshold\Persistence\Propel\AbstractSpySalesOrderThreshold; diff --git a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdQuery.php b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdQuery.php index dff58c8e2d..2fb2fd8734 100644 --- a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdQuery.php +++ b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesOrderThreshold\Persistence; use Spryker\Zed\SalesOrderThreshold\Persistence\Propel\AbstractSpySalesOrderThresholdQuery; diff --git a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSet.php b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSet.php index a80244dd9f..cc0c9f6182 100644 --- a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSet.php +++ b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSet.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesOrderThreshold\Persistence; use Spryker\Zed\SalesOrderThreshold\Persistence\Propel\AbstractSpySalesOrderThresholdTaxSet; diff --git a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSetQuery.php b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSetQuery.php index 698e915648..bf43e2508e 100644 --- a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSetQuery.php +++ b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTaxSetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesOrderThreshold\Persistence; use Spryker\Zed\SalesOrderThreshold\Persistence\Propel\AbstractSpySalesOrderThresholdTaxSetQuery; diff --git a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdType.php b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdType.php index ea05994a18..4a8b07965a 100644 --- a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdType.php +++ b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesOrderThreshold\Persistence; use Spryker\Zed\SalesOrderThreshold\Persistence\Propel\AbstractSpySalesOrderThresholdType; diff --git a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTypeQuery.php b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTypeQuery.php index 2e33c9e38a..32cc25587a 100644 --- a/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTypeQuery.php +++ b/src/Orm/Zed/SalesOrderThreshold/Persistence/SpySalesOrderThresholdTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesOrderThreshold\Persistence; use Spryker\Zed\SalesOrderThreshold\Persistence\Propel\AbstractSpySalesOrderThresholdTypeQuery; diff --git a/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetail.php b/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetail.php index aba4e4dd0c..00e12ceb1a 100644 --- a/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetail.php +++ b/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetail.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesPaymentDetail\Persistence; use Spryker\Zed\SalesPaymentDetail\Persistence\Propel\AbstractSpySalesPaymentDetail as BaseSpySalesPaymentDetail; diff --git a/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetailQuery.php b/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetailQuery.php index e2eb5c458b..eb371e8c3b 100644 --- a/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetailQuery.php +++ b/src/Orm/Zed/SalesPaymentDetail/Persistence/SpySalesPaymentDetailQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesPaymentDetail\Persistence; use Spryker\Zed\SalesPaymentDetail\Persistence\Propel\AbstractSpySalesPaymentDetailQuery as BaseSpySalesPaymentDetailQuery; diff --git a/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfiguration.php b/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfiguration.php index ee24741ee4..eb76e08ea1 100644 --- a/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfiguration.php +++ b/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfiguration.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesProductConfiguration\Persistence; use Spryker\Zed\SalesProductConfiguration\Persistence\Propel\AbstractSpySalesOrderItemConfiguration as BaseSpySalesOrderItemConfiguration; diff --git a/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfigurationQuery.php b/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfigurationQuery.php index 46e7ce92fc..ca683b4c86 100644 --- a/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfigurationQuery.php +++ b/src/Orm/Zed/SalesProductConfiguration/Persistence/SpySalesOrderItemConfigurationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesProductConfiguration\Persistence; use Spryker\Zed\SalesProductConfiguration\Persistence\Propel\AbstractSpySalesOrderItemConfigurationQuery as BaseSpySalesOrderItemConfigurationQuery; diff --git a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamation.php b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamation.php index 2e54a0501a..b3b31679a5 100644 --- a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamation.php +++ b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReclamation\Persistence; use Spryker\Zed\SalesReclamation\Persistence\Propel\AbstractSpySalesReclamation as BaseSpySalesReclamation; diff --git a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItem.php b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItem.php index 388167a4b8..a2f70f8e2e 100644 --- a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItem.php +++ b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReclamation\Persistence; use Spryker\Zed\SalesReclamation\Persistence\Propel\AbstractSpySalesReclamationItem as BaseSpySalesReclamationItem; diff --git a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItemQuery.php b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItemQuery.php index 05669458f7..551e50df86 100644 --- a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItemQuery.php +++ b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReclamation\Persistence; use Spryker\Zed\SalesReclamation\Persistence\Propel\AbstractSpySalesReclamationItemQuery as BaseSpySalesReclamationItemQuery; diff --git a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationQuery.php b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationQuery.php index 0ad14b49bd..828f29aa6b 100644 --- a/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationQuery.php +++ b/src/Orm/Zed/SalesReclamation/Persistence/SpySalesReclamationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReclamation\Persistence; use Spryker\Zed\SalesReclamation\Persistence\Propel\AbstractSpySalesReclamationQuery as BaseSpySalesReclamationQuery; diff --git a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturn.php b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturn.php index 36d011e977..11dcd59760 100644 --- a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturn.php +++ b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturn.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturn\Persistence; use Spryker\Zed\SalesReturn\Persistence\Propel\AbstractSpySalesReturn as BaseSpySalesReturn; diff --git a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItem.php b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItem.php index da69496e1b..461c10d92e 100644 --- a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItem.php +++ b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturn\Persistence; use Spryker\Zed\SalesReturn\Persistence\Propel\AbstractSpySalesReturnItem as BaseSpySalesReturnItem; diff --git a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItemQuery.php b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItemQuery.php index df9ed547eb..78a16aa004 100644 --- a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItemQuery.php +++ b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturn\Persistence; use Spryker\Zed\SalesReturn\Persistence\Propel\AbstractSpySalesReturnItemQuery as BaseSpySalesReturnItemQuery; diff --git a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnQuery.php b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnQuery.php index 23c466ca43..2af13c646a 100644 --- a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnQuery.php +++ b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturn\Persistence; use Spryker\Zed\SalesReturn\Persistence\Propel\AbstractSpySalesReturnQuery as BaseSpySalesReturnQuery; diff --git a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReason.php b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReason.php index 94f2b5e820..081e06a7ad 100644 --- a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReason.php +++ b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReason.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturn\Persistence; use Spryker\Zed\SalesReturn\Persistence\Propel\AbstractSpySalesReturnReason as BaseSpySalesReturnReason; diff --git a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReasonQuery.php b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReasonQuery.php index 06f9e41d7e..ff81f14173 100644 --- a/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReasonQuery.php +++ b/src/Orm/Zed/SalesReturn/Persistence/SpySalesReturnReasonQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturn\Persistence; use Spryker\Zed\SalesReturn\Persistence\Propel\AbstractSpySalesReturnReasonQuery as BaseSpySalesReturnReasonQuery; diff --git a/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearch.php b/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearch.php index 8e0df2f947..3a260dc235 100644 --- a/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearch.php +++ b/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturnSearch\Persistence; use Spryker\Zed\SalesReturnSearch\Persistence\Propel\AbstractSpySalesReturnReasonSearch as BaseSpySalesReturnReasonSearch; diff --git a/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearchQuery.php b/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearchQuery.php index e828b540aa..aa7fbbf574 100644 --- a/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearchQuery.php +++ b/src/Orm/Zed/SalesReturnSearch/Persistence/SpySalesReturnReasonSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesReturnSearch\Persistence; use Spryker\Zed\SalesReturnSearch\Persistence\Propel\AbstractSpySalesReturnReasonSearchQuery as BaseSpySalesReturnReasonSearchQuery; diff --git a/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentType.php b/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentType.php index 253482eb61..4f57a4f146 100644 --- a/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentType.php +++ b/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesShipmentType\Persistence; use Spryker\Zed\SalesShipmentType\Persistence\Propel\AbstractSpySalesShipmentType as BaseSpySalesShipmentType; diff --git a/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentTypeQuery.php b/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentTypeQuery.php index e59c846829..5678b85b89 100644 --- a/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentTypeQuery.php +++ b/src/Orm/Zed/SalesShipmentType/Persistence/SpySalesShipmentTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SalesShipmentType\Persistence; use Spryker\Zed\SalesShipmentType\Persistence\Propel\AbstractSpySalesShipmentTypeQuery as BaseSpySalesShipmentTypeQuery; diff --git a/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfig.php b/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfig.php index 2bbf945567..08f51ef355 100644 --- a/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfig.php +++ b/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SearchHttp\Persistence; use Spryker\Zed\SearchHttp\Persistence\Propel\AbstractSpySearchHttpConfig as BaseSpySearchHttpConfig; diff --git a/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfigQuery.php b/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfigQuery.php index c8e6f32ca9..5dc11158b0 100644 --- a/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfigQuery.php +++ b/src/Orm/Zed/SearchHttp/Persistence/SpySearchHttpConfigQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SearchHttp\Persistence; use Spryker\Zed\SearchHttp\Persistence\Propel\AbstractSpySearchHttpConfigQuery as BaseSpySearchHttpConfigQuery; diff --git a/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumber.php b/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumber.php index d7e5bab7da..6360f4ab56 100644 --- a/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumber.php +++ b/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumber.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SequenceNumber\Persistence; use Spryker\Zed\SequenceNumber\Persistence\Propel\AbstractSpySequenceNumber as BaseSpySequenceNumber; diff --git a/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumberQuery.php b/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumberQuery.php index 97695834c2..dca44f94a2 100644 --- a/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumberQuery.php +++ b/src/Orm/Zed/SequenceNumber/Persistence/SpySequenceNumberQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\SequenceNumber\Persistence; use Spryker\Zed\SequenceNumber\Persistence\Propel\AbstractSpySequenceNumberQuery as BaseSpySequenceNumberQuery; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrier.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrier.php index 9f59bd4ed5..d3ae88bf04 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrier.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrier.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentCarrier as BaseSpyShipmentCarrier; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrierQuery.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrierQuery.php index 1549885ada..6d871ff6bf 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrierQuery.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentCarrierQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentCarrierQuery as BaseSpyShipmentCarrierQuery; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethod.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethod.php index f635618bf2..df23ac96db 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethod.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethod.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentMethod as BaseSpyShipmentMethod; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPrice.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPrice.php index ce6d76620b..a1ca375a1b 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPrice.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPrice.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentMethodPrice as BaseSpyShipmentMethodPrice; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPriceQuery.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPriceQuery.php index a212673387..6a5100f669 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPriceQuery.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodPriceQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentMethodPriceQuery as BaseSpyShipmentMethodPriceQuery; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodQuery.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodQuery.php index 774e18eb4f..92c9bd3d36 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodQuery.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentMethodQuery as BaseSpyShipmentMethodQuery; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStore.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStore.php index 1ecb303bdb..4d27472c64 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStore.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentMethodStore as BaseSpyShipmentMethodStore; diff --git a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStoreQuery.php b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStoreQuery.php index 695151d277..9b90b12da7 100644 --- a/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStoreQuery.php +++ b/src/Orm/Zed/Shipment/Persistence/SpyShipmentMethodStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Shipment\Persistence; use Spryker\Zed\Shipment\Persistence\Propel\AbstractSpyShipmentMethodStoreQuery as BaseSpyShipmentMethodStoreQuery; diff --git a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentType.php b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentType.php index f4c861a245..90b069e60c 100644 --- a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentType.php +++ b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentType.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ShipmentType\Persistence; use Spryker\Zed\ShipmentType\Persistence\Propel\AbstractSpyShipmentType as BaseSpyShipmentType; diff --git a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeQuery.php b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeQuery.php index c5ae2fea6b..5040219012 100644 --- a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeQuery.php +++ b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ShipmentType\Persistence; use Spryker\Zed\ShipmentType\Persistence\Propel\AbstractSpyShipmentTypeQuery as BaseSpyShipmentTypeQuery; diff --git a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStore.php b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStore.php index e9ade13002..2873ae65d8 100644 --- a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStore.php +++ b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ShipmentType\Persistence; use Spryker\Zed\ShipmentType\Persistence\Propel\AbstractSpyShipmentTypeStore as BaseSpyShipmentTypeStore; diff --git a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStoreQuery.php b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStoreQuery.php index 5e59daacf6..7d92c4161d 100644 --- a/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStoreQuery.php +++ b/src/Orm/Zed/ShipmentType/Persistence/SpyShipmentTypeStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ShipmentType\Persistence; use Spryker\Zed\ShipmentType\Persistence\Propel\AbstractSpyShipmentTypeStoreQuery as BaseSpyShipmentTypeStoreQuery; diff --git a/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorage.php b/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorage.php index 95a5a7a03b..8e2dfa10f2 100644 --- a/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorage.php +++ b/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ShipmentTypeStorage\Persistence; use Spryker\Zed\ShipmentTypeStorage\Persistence\Propel\AbstractSpyShipmentTypeStorage as BaseSpyShipmentTypeStorage; diff --git a/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorageQuery.php b/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorageQuery.php index 4fa7aefe16..747e43c9a0 100644 --- a/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorageQuery.php +++ b/src/Orm/Zed/ShipmentTypeStorage/Persistence/SpyShipmentTypeStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\ShipmentTypeStorage\Persistence; use Spryker\Zed\ShipmentTypeStorage\Persistence\Propel\AbstractSpyShipmentTypeStorageQuery as BaseSpyShipmentTypeStorageQuery; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeout.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeout.php index a0dfd9498d..52ff74d88c 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeout.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeout.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineEventTimeout as BaseSpyStateMachineEventTimeout; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeoutQuery.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeoutQuery.php index e68abaaa98..2554a5b1dd 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeoutQuery.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineEventTimeoutQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineEventTimeoutQuery as BaseSpyStateMachineEventTimeoutQuery; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemState.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemState.php index b19bd9c992..9668dd1f61 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemState.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemState.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineItemState as BaseSpyStateMachineItemState; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistory.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistory.php index 3a090d1019..0f8c4fe5e5 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistory.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineItemStateHistory as BaseSpyStateMachineItemStateHistory; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistoryQuery.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistoryQuery.php index 27e59e35ec..bf7aa84487 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistoryQuery.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateHistoryQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineItemStateHistoryQuery as BaseSpyStateMachineItemStateHistoryQuery; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateQuery.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateQuery.php index f4a436b940..71e4ecc068 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateQuery.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineItemStateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineItemStateQuery as BaseSpyStateMachineItemStateQuery; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLock.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLock.php index fccad4bab7..f915bcd11a 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLock.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLock.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineLock as BaseSpyStateMachineLock; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLockQuery.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLockQuery.php index 918052b062..ecceb925ce 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLockQuery.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineLockQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineLockQuery as BaseSpyStateMachineLockQuery; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcess.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcess.php index 5d82b80a93..a61de25d9f 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcess.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcess.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineProcess as BaseSpyStateMachineProcess; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcessQuery.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcessQuery.php index 0f27dc9d87..e6067f74d3 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcessQuery.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineProcessQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineProcessQuery as BaseSpyStateMachineProcessQuery; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLog.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLog.php index 649a389584..d84427ab35 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLog.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLog.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineTransitionLog as BaseSpyStateMachineTransitionLog; diff --git a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLogQuery.php b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLogQuery.php index 17dda94ab9..52c04c30ce 100644 --- a/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLogQuery.php +++ b/src/Orm/Zed/StateMachine/Persistence/SpyStateMachineTransitionLogQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StateMachine\Persistence; use Spryker\Zed\StateMachine\Persistence\Propel\AbstractSpyStateMachineTransitionLogQuery as BaseSpyStateMachineTransitionLogQuery; diff --git a/src/Orm/Zed/Stock/Persistence/SpyStock.php b/src/Orm/Zed/Stock/Persistence/SpyStock.php index 1dbe765823..06ed041c97 100644 --- a/src/Orm/Zed/Stock/Persistence/SpyStock.php +++ b/src/Orm/Zed/Stock/Persistence/SpyStock.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Stock\Persistence; use Spryker\Zed\Stock\Persistence\Propel\AbstractSpyStock as BaseSpyStock; diff --git a/src/Orm/Zed/Stock/Persistence/SpyStockProduct.php b/src/Orm/Zed/Stock/Persistence/SpyStockProduct.php index f5d96c0e58..3923ae631a 100644 --- a/src/Orm/Zed/Stock/Persistence/SpyStockProduct.php +++ b/src/Orm/Zed/Stock/Persistence/SpyStockProduct.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Stock\Persistence; use Spryker\Zed\Stock\Persistence\Propel\AbstractSpyStockProduct as BaseSpyStockProduct; diff --git a/src/Orm/Zed/Stock/Persistence/SpyStockProductQuery.php b/src/Orm/Zed/Stock/Persistence/SpyStockProductQuery.php index 75498d9f2c..8242dcb0ee 100644 --- a/src/Orm/Zed/Stock/Persistence/SpyStockProductQuery.php +++ b/src/Orm/Zed/Stock/Persistence/SpyStockProductQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Stock\Persistence; use Spryker\Zed\Stock\Persistence\Propel\AbstractSpyStockProductQuery as BaseSpyStockProductQuery; diff --git a/src/Orm/Zed/Stock/Persistence/SpyStockQuery.php b/src/Orm/Zed/Stock/Persistence/SpyStockQuery.php index a617b02b7d..9b89eb28f0 100644 --- a/src/Orm/Zed/Stock/Persistence/SpyStockQuery.php +++ b/src/Orm/Zed/Stock/Persistence/SpyStockQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Stock\Persistence; use Spryker\Zed\Stock\Persistence\Propel\AbstractSpyStockQuery as BaseSpyStockQuery; diff --git a/src/Orm/Zed/Stock/Persistence/SpyStockStore.php b/src/Orm/Zed/Stock/Persistence/SpyStockStore.php index 0d2a7310ff..5b842bc2b0 100644 --- a/src/Orm/Zed/Stock/Persistence/SpyStockStore.php +++ b/src/Orm/Zed/Stock/Persistence/SpyStockStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Stock\Persistence; use Spryker\Zed\Stock\Persistence\Propel\AbstractSpyStockStore as BaseSpyStockStore; diff --git a/src/Orm/Zed/Stock/Persistence/SpyStockStoreQuery.php b/src/Orm/Zed/Stock/Persistence/SpyStockStoreQuery.php index c821264355..deb4509f17 100644 --- a/src/Orm/Zed/Stock/Persistence/SpyStockStoreQuery.php +++ b/src/Orm/Zed/Stock/Persistence/SpyStockStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Stock\Persistence; use Spryker\Zed\Stock\Persistence\Propel\AbstractSpyStockStoreQuery as BaseSpyStockStoreQuery; diff --git a/src/Orm/Zed/StockAddress/Persistence/SpyStockAddress.php b/src/Orm/Zed/StockAddress/Persistence/SpyStockAddress.php index 9ad0b4c9b6..d0e2fcec89 100644 --- a/src/Orm/Zed/StockAddress/Persistence/SpyStockAddress.php +++ b/src/Orm/Zed/StockAddress/Persistence/SpyStockAddress.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StockAddress\Persistence; use Spryker\Zed\StockAddress\Persistence\Propel\AbstractSpyStockAddress as BaseSpyStockAddress; diff --git a/src/Orm/Zed/StockAddress/Persistence/SpyStockAddressQuery.php b/src/Orm/Zed/StockAddress/Persistence/SpyStockAddressQuery.php index 06185e0186..b9313e863d 100644 --- a/src/Orm/Zed/StockAddress/Persistence/SpyStockAddressQuery.php +++ b/src/Orm/Zed/StockAddress/Persistence/SpyStockAddressQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StockAddress\Persistence; use Spryker\Zed\StockAddress\Persistence\Propel\AbstractSpyStockAddressQuery as BaseSpyStockAddressQuery; diff --git a/src/Orm/Zed/Store/Persistence/SpyStore.php b/src/Orm/Zed/Store/Persistence/SpyStore.php index 2a193aa767..2dcc371cf0 100644 --- a/src/Orm/Zed/Store/Persistence/SpyStore.php +++ b/src/Orm/Zed/Store/Persistence/SpyStore.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Store\Persistence; use Spryker\Zed\Store\Persistence\Propel\AbstractSpyStore as BaseSpyStore; diff --git a/src/Orm/Zed/Store/Persistence/SpyStoreQuery.php b/src/Orm/Zed/Store/Persistence/SpyStoreQuery.php index 336cee24ae..0cd0327d68 100644 --- a/src/Orm/Zed/Store/Persistence/SpyStoreQuery.php +++ b/src/Orm/Zed/Store/Persistence/SpyStoreQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Store\Persistence; use Spryker\Zed\Store\Persistence\Propel\AbstractSpyStoreQuery as BaseSpyStoreQuery; diff --git a/src/Orm/Zed/StoreContext/Persistence/SpyStoreContext.php b/src/Orm/Zed/StoreContext/Persistence/SpyStoreContext.php index f607ad8092..3403c6d341 100644 --- a/src/Orm/Zed/StoreContext/Persistence/SpyStoreContext.php +++ b/src/Orm/Zed/StoreContext/Persistence/SpyStoreContext.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StoreContext\Persistence; use Spryker\Zed\StoreContext\Persistence\Propel\AbstractSpyStoreContext as BaseSpyStoreContext; diff --git a/src/Orm/Zed/StoreContext/Persistence/SpyStoreContextQuery.php b/src/Orm/Zed/StoreContext/Persistence/SpyStoreContextQuery.php index 7ddbe33a36..f57d1da028 100644 --- a/src/Orm/Zed/StoreContext/Persistence/SpyStoreContextQuery.php +++ b/src/Orm/Zed/StoreContext/Persistence/SpyStoreContextQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StoreContext\Persistence; use Spryker\Zed\StoreContext\Persistence\Propel\AbstractSpyStoreContextQuery as BaseSpyStoreContextQuery; diff --git a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorage.php b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorage.php index 12122a0617..26da9d4df7 100644 --- a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorage.php +++ b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StoreStorage\Persistence; use Spryker\Zed\StoreStorage\Persistence\Propel\AbstractSpyStoreListStorage as BaseSpyStoreListStorage; diff --git a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorageQuery.php b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorageQuery.php index c1f8697e2e..7628822b46 100644 --- a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorageQuery.php +++ b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreListStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StoreStorage\Persistence; use Spryker\Zed\StoreStorage\Persistence\Propel\AbstractSpyStoreListStorageQuery as BaseSpyStoreListStorageQuery; diff --git a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorage.php b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorage.php index 9792aaa816..bc655b94b8 100644 --- a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorage.php +++ b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StoreStorage\Persistence; use Spryker\Zed\StoreStorage\Persistence\Propel\AbstractSpyStoreStorage as BaseSpyStoreStorage; diff --git a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorageQuery.php b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorageQuery.php index 455fbdec4b..943fe0b4cd 100644 --- a/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorageQuery.php +++ b/src/Orm/Zed/StoreStorage/Persistence/SpyStoreStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\StoreStorage\Persistence; use Spryker\Zed\StoreStorage\Persistence\Propel\AbstractSpyStoreStorageQuery as BaseSpyStoreStorageQuery; diff --git a/src/Orm/Zed/Tax/Persistence/SpyTaxRate.php b/src/Orm/Zed/Tax/Persistence/SpyTaxRate.php index b2226a9b3c..320ac137c2 100644 --- a/src/Orm/Zed/Tax/Persistence/SpyTaxRate.php +++ b/src/Orm/Zed/Tax/Persistence/SpyTaxRate.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Tax\Persistence; use Spryker\Zed\Tax\Persistence\Propel\AbstractSpyTaxRate as BaseSpyTaxRate; diff --git a/src/Orm/Zed/Tax/Persistence/SpyTaxRateQuery.php b/src/Orm/Zed/Tax/Persistence/SpyTaxRateQuery.php index 6ce657e26d..5b0f2be534 100644 --- a/src/Orm/Zed/Tax/Persistence/SpyTaxRateQuery.php +++ b/src/Orm/Zed/Tax/Persistence/SpyTaxRateQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Tax\Persistence; use Spryker\Zed\Tax\Persistence\Propel\AbstractSpyTaxRateQuery as BaseAbstractSpyTaxRateQuery; diff --git a/src/Orm/Zed/Tax/Persistence/SpyTaxSet.php b/src/Orm/Zed/Tax/Persistence/SpyTaxSet.php index 4a720dfa6d..a21c0157b5 100644 --- a/src/Orm/Zed/Tax/Persistence/SpyTaxSet.php +++ b/src/Orm/Zed/Tax/Persistence/SpyTaxSet.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Tax\Persistence; use Spryker\Zed\Tax\Persistence\Propel\AbstractSpyTaxSet as BaseSpyTaxSet; diff --git a/src/Orm/Zed/Tax/Persistence/SpyTaxSetQuery.php b/src/Orm/Zed/Tax/Persistence/SpyTaxSetQuery.php index 4255c0aa69..4da2a181ae 100644 --- a/src/Orm/Zed/Tax/Persistence/SpyTaxSetQuery.php +++ b/src/Orm/Zed/Tax/Persistence/SpyTaxSetQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Tax\Persistence; use Spryker\Zed\Tax\Persistence\Propel\AbstractSpyTaxSetQuery as BaseSpyTaxSetQuery; diff --git a/src/Orm/Zed/Tax/Persistence/SpyTaxSetTax.php b/src/Orm/Zed/Tax/Persistence/SpyTaxSetTax.php index 1c7cf49ef1..a3caccc6e8 100644 --- a/src/Orm/Zed/Tax/Persistence/SpyTaxSetTax.php +++ b/src/Orm/Zed/Tax/Persistence/SpyTaxSetTax.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Tax\Persistence; use Spryker\Zed\Tax\Persistence\Propel\AbstractSpyTaxSetTax as BaseSpyTaxSetTax; diff --git a/src/Orm/Zed/Tax/Persistence/SpyTaxSetTaxQuery.php b/src/Orm/Zed/Tax/Persistence/SpyTaxSetTaxQuery.php index 624c560299..6794dfdf7a 100644 --- a/src/Orm/Zed/Tax/Persistence/SpyTaxSetTaxQuery.php +++ b/src/Orm/Zed/Tax/Persistence/SpyTaxSetTaxQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Tax\Persistence; use Spryker\Zed\Tax\Persistence\Propel\AbstractSpyTaxSetTaxQuery as BaseSpyTaxSetTaxQuery; diff --git a/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfig.php b/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfig.php index 21c2797303..b1d9c0500d 100644 --- a/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfig.php +++ b/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\TaxApp\Persistence; use Spryker\Zed\TaxApp\Persistence\Propel\AbstractSpyTaxAppConfig as BaseSpyTaxAppConfig; diff --git a/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfigQuery.php b/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfigQuery.php index ad855d9f0b..54bd334d7a 100644 --- a/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfigQuery.php +++ b/src/Orm/Zed/TaxApp/Persistence/SpyTaxAppConfigQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\TaxApp\Persistence; use Spryker\Zed\TaxApp\Persistence\Propel\AbstractSpyTaxAppConfigQuery as BaseSpyTaxAppConfigQuery; diff --git a/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorage.php b/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorage.php index 80ff271e99..f3d60449cb 100644 --- a/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorage.php +++ b/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\TaxProductStorage\Persistence; use Spryker\Zed\TaxProductStorage\Persistence\Propel\AbstractSpyTaxProductStorage as BaseSpyTaxProductStorage; diff --git a/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorageQuery.php b/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorageQuery.php index 5d02469cf1..35238091b7 100644 --- a/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorageQuery.php +++ b/src/Orm/Zed/TaxProductStorage/Persistence/SpyTaxProductStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\TaxProductStorage\Persistence; use Spryker\Zed\TaxProductStorage\Persistence\Propel\AbstractSpyTaxProductStorageQuery as BaseSpyTaxProductStorageQuery; diff --git a/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorage.php b/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorage.php index 45ce0d0f98..c1846db077 100644 --- a/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorage.php +++ b/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\TaxStorage\Persistence; use Spryker\Zed\TaxStorage\Persistence\Propel\AbstractSpyTaxSetStorage as BaseSpyTaxSetStorage; diff --git a/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorageQuery.php b/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorageQuery.php index 80004aa962..7ca87ad0b9 100644 --- a/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorageQuery.php +++ b/src/Orm/Zed/TaxStorage/Persistence/SpyTaxSetStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\TaxStorage\Persistence; use Spryker\Zed\TaxStorage\Persistence\Propel\AbstractSpyTaxSetStorageQuery as BaseSpyTaxSetStorageQuery; diff --git a/src/Orm/Zed/Touch/Persistence/SpyTouch.php b/src/Orm/Zed/Touch/Persistence/SpyTouch.php index dfbe153a61..3b77c5e7a4 100644 --- a/src/Orm/Zed/Touch/Persistence/SpyTouch.php +++ b/src/Orm/Zed/Touch/Persistence/SpyTouch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Touch\Persistence; use Spryker\Zed\Touch\Persistence\Propel\AbstractSpyTouch as BaseSpyTouch; diff --git a/src/Orm/Zed/Touch/Persistence/SpyTouchQuery.php b/src/Orm/Zed/Touch/Persistence/SpyTouchQuery.php index 035acd93c6..f9a2ee15d6 100644 --- a/src/Orm/Zed/Touch/Persistence/SpyTouchQuery.php +++ b/src/Orm/Zed/Touch/Persistence/SpyTouchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Touch\Persistence; use Spryker\Zed\Touch\Persistence\Propel\AbstractSpyTouchQuery as BaseSpyTouchQuery; diff --git a/src/Orm/Zed/Touch/Persistence/SpyTouchSearch.php b/src/Orm/Zed/Touch/Persistence/SpyTouchSearch.php index faa4e223d8..f66864397e 100644 --- a/src/Orm/Zed/Touch/Persistence/SpyTouchSearch.php +++ b/src/Orm/Zed/Touch/Persistence/SpyTouchSearch.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Touch\Persistence; use Spryker\Zed\Touch\Persistence\Propel\AbstractSpyTouchSearch as BaseSpyTouchSearch; diff --git a/src/Orm/Zed/Touch/Persistence/SpyTouchSearchQuery.php b/src/Orm/Zed/Touch/Persistence/SpyTouchSearchQuery.php index 0614d114d1..7c98601037 100644 --- a/src/Orm/Zed/Touch/Persistence/SpyTouchSearchQuery.php +++ b/src/Orm/Zed/Touch/Persistence/SpyTouchSearchQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Touch\Persistence; use Spryker\Zed\Touch\Persistence\Propel\AbstractSpyTouchSearchQuery as BaseSpyTouchSearchQuery; diff --git a/src/Orm/Zed/Touch/Persistence/SpyTouchStorage.php b/src/Orm/Zed/Touch/Persistence/SpyTouchStorage.php index da391ef0e7..7a93e4fc4d 100644 --- a/src/Orm/Zed/Touch/Persistence/SpyTouchStorage.php +++ b/src/Orm/Zed/Touch/Persistence/SpyTouchStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Touch\Persistence; use Spryker\Zed\Touch\Persistence\Propel\AbstractSpyTouchStorage as BaseSpyTouchStorage; diff --git a/src/Orm/Zed/Touch/Persistence/SpyTouchStorageQuery.php b/src/Orm/Zed/Touch/Persistence/SpyTouchStorageQuery.php index da4fd13671..f6177fe05e 100644 --- a/src/Orm/Zed/Touch/Persistence/SpyTouchStorageQuery.php +++ b/src/Orm/Zed/Touch/Persistence/SpyTouchStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Touch\Persistence; use Spryker\Zed\Touch\Persistence\Propel\AbstractSpyTouchStorageQuery as BaseSpyTouchStorageQuery; diff --git a/src/Orm/Zed/Url/Persistence/SpyUrl.php b/src/Orm/Zed/Url/Persistence/SpyUrl.php index f3f859ec6a..c6ea12ad12 100644 --- a/src/Orm/Zed/Url/Persistence/SpyUrl.php +++ b/src/Orm/Zed/Url/Persistence/SpyUrl.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Url\Persistence; use Spryker\Zed\Url\Persistence\Propel\AbstractSpyUrl as BaseSpyUrl; diff --git a/src/Orm/Zed/Url/Persistence/SpyUrlQuery.php b/src/Orm/Zed/Url/Persistence/SpyUrlQuery.php index bb026e9141..889adcb49b 100644 --- a/src/Orm/Zed/Url/Persistence/SpyUrlQuery.php +++ b/src/Orm/Zed/Url/Persistence/SpyUrlQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Url\Persistence; use Spryker\Zed\Url\Persistence\Propel\AbstractSpyUrlQuery as BaseSpyUrlQuery; diff --git a/src/Orm/Zed/Url/Persistence/SpyUrlRedirect.php b/src/Orm/Zed/Url/Persistence/SpyUrlRedirect.php index ead9c795c2..9e347daae6 100644 --- a/src/Orm/Zed/Url/Persistence/SpyUrlRedirect.php +++ b/src/Orm/Zed/Url/Persistence/SpyUrlRedirect.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Url\Persistence; use Spryker\Zed\Url\Persistence\Propel\AbstractSpyUrlRedirect as BaseSpyUrlRedirect; diff --git a/src/Orm/Zed/Url/Persistence/SpyUrlRedirectQuery.php b/src/Orm/Zed/Url/Persistence/SpyUrlRedirectQuery.php index 6bd8e63799..db27dd6f99 100644 --- a/src/Orm/Zed/Url/Persistence/SpyUrlRedirectQuery.php +++ b/src/Orm/Zed/Url/Persistence/SpyUrlRedirectQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Url\Persistence; use Spryker\Zed\Url\Persistence\Propel\AbstractSpyUrlRedirectQuery as BaseSpyUrlRedirectQuery; diff --git a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorage.php b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorage.php index 537f71b6ca..6a9c5a8aca 100644 --- a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorage.php +++ b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UrlStorage\Persistence; use Spryker\Zed\UrlStorage\Persistence\Propel\AbstractSpyUrlRedirectStorage; diff --git a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorageQuery.php b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorageQuery.php index 9cf146f3f5..2472eab0a4 100644 --- a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorageQuery.php +++ b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlRedirectStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UrlStorage\Persistence; use Spryker\Zed\UrlStorage\Persistence\Propel\AbstractSpyUrlRedirectStorageQuery; diff --git a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorage.php b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorage.php index bf1d74bdc1..b6b31d3e11 100644 --- a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorage.php +++ b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UrlStorage\Persistence; use Spryker\Zed\UrlStorage\Persistence\Propel\AbstractSpyUrlStorage; diff --git a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorageQuery.php b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorageQuery.php index 25a97bb00b..66d84cd67c 100644 --- a/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorageQuery.php +++ b/src/Orm/Zed/UrlStorage/Persistence/SpyUrlStorageQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UrlStorage\Persistence; use Spryker\Zed\UrlStorage\Persistence\Propel\AbstractSpyUrlStorageQuery; diff --git a/src/Orm/Zed/User/Persistence/SpyUser.php b/src/Orm/Zed/User/Persistence/SpyUser.php index d1fa0077bf..61a2aa553d 100644 --- a/src/Orm/Zed/User/Persistence/SpyUser.php +++ b/src/Orm/Zed/User/Persistence/SpyUser.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\User\Persistence; use Spryker\Zed\User\Persistence\Propel\AbstractSpyUser as BaseSpyUser; diff --git a/src/Orm/Zed/User/Persistence/SpyUserArchive.php b/src/Orm/Zed/User/Persistence/SpyUserArchive.php index 28f1e0125a..20751db766 100644 --- a/src/Orm/Zed/User/Persistence/SpyUserArchive.php +++ b/src/Orm/Zed/User/Persistence/SpyUserArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\User\Persistence; use Spryker\Zed\User\Persistence\Propel\AbstractSpyUserArchive as BaseSpyUserArchive; diff --git a/src/Orm/Zed/User/Persistence/SpyUserArchiveQuery.php b/src/Orm/Zed/User/Persistence/SpyUserArchiveQuery.php index 5f050832eb..d466bea4d1 100644 --- a/src/Orm/Zed/User/Persistence/SpyUserArchiveQuery.php +++ b/src/Orm/Zed/User/Persistence/SpyUserArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\User\Persistence; use Spryker\Zed\User\Persistence\Propel\AbstractSpyUserArchiveQuery as BaseSpyUserArchiveQuery; diff --git a/src/Orm/Zed/User/Persistence/SpyUserQuery.php b/src/Orm/Zed/User/Persistence/SpyUserQuery.php index c27d814852..b510d5cbdf 100644 --- a/src/Orm/Zed/User/Persistence/SpyUserQuery.php +++ b/src/Orm/Zed/User/Persistence/SpyUserQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\User\Persistence; use Spryker\Zed\User\Persistence\Propel\AbstractSpyUserQuery as BaseSpyUserQuery; diff --git a/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchive.php b/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchive.php index da1a895ae2..147f39c8fe 100644 --- a/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchive.php +++ b/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchive.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UserPasswordReset\Persistence; use Spryker\Zed\UserPasswordReset\Persistence\Propel\AbstractSpyAuthResetPasswordArchive as BaseSpyAuthResetPasswordArchive; diff --git a/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchiveQuery.php b/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchiveQuery.php index 58fdf73641..c13c7cf799 100644 --- a/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchiveQuery.php +++ b/src/Orm/Zed/UserPasswordReset/Persistence/SpyAuthResetPasswordArchiveQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UserPasswordReset\Persistence; use Spryker\Zed\UserPasswordReset\Persistence\Propel\AbstractSpyAuthResetPasswordArchiveQuery as BaseSpyAuthResetPasswordArchiveQuery; diff --git a/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPassword.php b/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPassword.php index 01d9e62d9c..e015621efe 100644 --- a/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPassword.php +++ b/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPassword.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UserPasswordReset\Persistence; use Spryker\Zed\UserPasswordReset\Persistence\Propel\AbstractSpyResetPassword as BaseSpyResetPassword; diff --git a/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPasswordQuery.php b/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPasswordQuery.php index 991d5261e0..845dcae6d9 100644 --- a/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPasswordQuery.php +++ b/src/Orm/Zed/UserPasswordReset/Persistence/SpyResetPasswordQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\UserPasswordReset\Persistence; use Spryker\Zed\UserPasswordReset\Persistence\Propel\AbstractSpyResetPasswordQuery as BaseSpyResetPasswordQuery; diff --git a/src/Orm/Zed/Vault/Persistence/SpyVaultDeposit.php b/src/Orm/Zed/Vault/Persistence/SpyVaultDeposit.php index 87ac9b911c..3a9f8d596d 100644 --- a/src/Orm/Zed/Vault/Persistence/SpyVaultDeposit.php +++ b/src/Orm/Zed/Vault/Persistence/SpyVaultDeposit.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Vault\Persistence; use Spryker\Zed\Vault\Persistence\Propel\AbstractSpyVaultDeposit as BaseSpyVaultDeposit; diff --git a/src/Orm/Zed/Vault/Persistence/SpyVaultDepositQuery.php b/src/Orm/Zed/Vault/Persistence/SpyVaultDepositQuery.php index 7d1e387762..b51def495a 100644 --- a/src/Orm/Zed/Vault/Persistence/SpyVaultDepositQuery.php +++ b/src/Orm/Zed/Vault/Persistence/SpyVaultDepositQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Vault\Persistence; use Spryker\Zed\Vault\Persistence\Propel\AbstractSpyVaultDepositQuery as BaseSpyVaultDepositQuery; diff --git a/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocation.php b/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocation.php index f67a020f17..9d00f7b097 100644 --- a/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocation.php +++ b/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocation.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\WarehouseAllocation\Persistence; use Spryker\Zed\WarehouseAllocation\Persistence\Propel\AbstractSpyWarehouseAllocation as BaseSpyWarehouseAllocation; diff --git a/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocationQuery.php b/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocationQuery.php index 1031b845f6..5e59da4c3e 100644 --- a/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocationQuery.php +++ b/src/Orm/Zed/WarehouseAllocation/Persistence/SpyWarehouseAllocationQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\WarehouseAllocation\Persistence; use Spryker\Zed\WarehouseAllocation\Persistence\Propel\AbstractSpyWarehouseAllocationQuery as BaseSpyWarehouseAllocationQuery; diff --git a/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignment.php b/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignment.php index d248d3c42e..134c57a9c5 100644 --- a/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignment.php +++ b/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignment.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\WarehouseUser\Persistence; use Spryker\Zed\WarehouseUser\Persistence\Propel\AbstractSpyWarehouseUserAssignment as BaseSpyWarehouseUserAssignment; diff --git a/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignmentQuery.php b/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignmentQuery.php index 010d5521ce..30cd4eb250 100644 --- a/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignmentQuery.php +++ b/src/Orm/Zed/WarehouseUser/Persistence/SpyWarehouseUserAssignmentQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\WarehouseUser\Persistence; use Spryker\Zed\WarehouseUser\Persistence\Propel\AbstractSpyWarehouseUserAssignmentQuery as BaseSpyWarehouseUserAssignmentQuery; diff --git a/src/Orm/Zed/Wishlist/Persistence/SpyWishlist.php b/src/Orm/Zed/Wishlist/Persistence/SpyWishlist.php index 652bc1c7b0..be232b3716 100644 --- a/src/Orm/Zed/Wishlist/Persistence/SpyWishlist.php +++ b/src/Orm/Zed/Wishlist/Persistence/SpyWishlist.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Wishlist\Persistence; use Spryker\Zed\Wishlist\Persistence\Propel\AbstractSpyWishlist as BaseSpyWishlist; diff --git a/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItem.php b/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItem.php index 3ac585578c..96ae719485 100644 --- a/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItem.php +++ b/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItem.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Wishlist\Persistence; use Spryker\Zed\Wishlist\Persistence\Propel\AbstractSpyWishlistItem as BaseSpyWishlistItem; diff --git a/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItemQuery.php b/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItemQuery.php index d5eedbd460..30f92ed6aa 100644 --- a/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItemQuery.php +++ b/src/Orm/Zed/Wishlist/Persistence/SpyWishlistItemQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Wishlist\Persistence; use Spryker\Zed\Wishlist\Persistence\Propel\AbstractSpyWishlistItemQuery as BaseSpyWishlistItemQuery; diff --git a/src/Orm/Zed/Wishlist/Persistence/SpyWishlistQuery.php b/src/Orm/Zed/Wishlist/Persistence/SpyWishlistQuery.php index b4e79a1b6c..27c810a1cc 100644 --- a/src/Orm/Zed/Wishlist/Persistence/SpyWishlistQuery.php +++ b/src/Orm/Zed/Wishlist/Persistence/SpyWishlistQuery.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Orm\Zed\Wishlist\Persistence; use Spryker\Zed\Wishlist\Persistence\Propel\AbstractSpyWishlistQuery as BaseSpyWishlistQuery; diff --git a/src/Pyz/Client/Agent/AgentDependencyProvider.php b/src/Pyz/Client/Agent/AgentDependencyProvider.php index abd59dccda..628fc03463 100644 --- a/src/Pyz/Client/Agent/AgentDependencyProvider.php +++ b/src/Pyz/Client/Agent/AgentDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Agent; use Spryker\Client\Agent\AgentDependencyProvider as SprykerAgentDependencyProvider; diff --git a/src/Pyz/Client/Authentication/AuthenticationDependencyProvider.php b/src/Pyz/Client/Authentication/AuthenticationDependencyProvider.php index 010a0407d5..d024a49f4f 100644 --- a/src/Pyz/Client/Authentication/AuthenticationDependencyProvider.php +++ b/src/Pyz/Client/Authentication/AuthenticationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Authentication; use Spryker\Client\Authentication\AuthenticationDependencyProvider as SprykerAuthenticationDependencyProvider; diff --git a/src/Pyz/Client/Authorization/AuthorizationDependencyProvider.php b/src/Pyz/Client/Authorization/AuthorizationDependencyProvider.php index 30ef5e00c8..b027eaaa76 100644 --- a/src/Pyz/Client/Authorization/AuthorizationDependencyProvider.php +++ b/src/Pyz/Client/Authorization/AuthorizationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Authorization; use Spryker\Client\Authorization\AuthorizationDependencyProvider as SprykerAuthorizationDependencyProvider; diff --git a/src/Pyz/Client/AvailabilityStorage/AvailabilityStorageDependencyProvider.php b/src/Pyz/Client/AvailabilityStorage/AvailabilityStorageDependencyProvider.php index e8c8a18131..b2cb4f784c 100644 --- a/src/Pyz/Client/AvailabilityStorage/AvailabilityStorageDependencyProvider.php +++ b/src/Pyz/Client/AvailabilityStorage/AvailabilityStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\AvailabilityStorage; use Spryker\Client\AvailabilityStorage\AvailabilityStorageDependencyProvider as SprykerAvailabilityStorageDependencyProvider; diff --git a/src/Pyz/Client/Cart/CartDependencyProvider.php b/src/Pyz/Client/Cart/CartDependencyProvider.php index b76804eb4b..c51ec66d86 100644 --- a/src/Pyz/Client/Cart/CartDependencyProvider.php +++ b/src/Pyz/Client/Cart/CartDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Cart; use Spryker\Client\Cart\CartDependencyProvider as SprykerCartDependencyProvider; diff --git a/src/Pyz/Client/CartNote/CartNoteDependencyProvider.php b/src/Pyz/Client/CartNote/CartNoteDependencyProvider.php index a20f7e3fa1..87c0ba8c2d 100644 --- a/src/Pyz/Client/CartNote/CartNoteDependencyProvider.php +++ b/src/Pyz/Client/CartNote/CartNoteDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\CartNote; use Spryker\Client\CartNote\CartNoteDependencyProvider as SprykerCartNoteDependencyProvider; diff --git a/src/Pyz/Client/Catalog/CatalogConfig.php b/src/Pyz/Client/Catalog/CatalogConfig.php index a6097e2f82..4624c36075 100644 --- a/src/Pyz/Client/Catalog/CatalogConfig.php +++ b/src/Pyz/Client/Catalog/CatalogConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Catalog; use Spryker\Client\Catalog\CatalogConfig as SprykerCatalogConfig; diff --git a/src/Pyz/Client/Catalog/CatalogDependencyProvider.php b/src/Pyz/Client/Catalog/CatalogDependencyProvider.php index 736f5a7ddf..c2da843e5a 100644 --- a/src/Pyz/Client/Catalog/CatalogDependencyProvider.php +++ b/src/Pyz/Client/Catalog/CatalogDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Catalog; use Spryker\Client\Catalog\CatalogDependencyProvider as SprykerCatalogDependencyProvider; diff --git a/src/Pyz/Client/CmsPageSearch/CmsPageSearchDependencyProvider.php b/src/Pyz/Client/CmsPageSearch/CmsPageSearchDependencyProvider.php index a1170132e6..7bdb76b02b 100644 --- a/src/Pyz/Client/CmsPageSearch/CmsPageSearchDependencyProvider.php +++ b/src/Pyz/Client/CmsPageSearch/CmsPageSearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\CmsPageSearch; use Spryker\Client\CmsPageSearch\CmsPageSearchDependencyProvider as SprykerCmsPageSearchDependencyProvider; diff --git a/src/Pyz/Client/CmsSlot/CmsSlotDependencyProvider.php b/src/Pyz/Client/CmsSlot/CmsSlotDependencyProvider.php index 8bce99ad13..b5cb97569d 100644 --- a/src/Pyz/Client/CmsSlot/CmsSlotDependencyProvider.php +++ b/src/Pyz/Client/CmsSlot/CmsSlotDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\CmsSlot; use Spryker\Client\CmsSlot\CmsSlotDependencyProvider as SprykerCmsSlotDependencyProvider; diff --git a/src/Pyz/Client/CmsSlotBlock/CmsSlotBlockDependencyProvider.php b/src/Pyz/Client/CmsSlotBlock/CmsSlotBlockDependencyProvider.php index 794478a429..0f94c7581f 100644 --- a/src/Pyz/Client/CmsSlotBlock/CmsSlotBlockDependencyProvider.php +++ b/src/Pyz/Client/CmsSlotBlock/CmsSlotBlockDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\CmsSlotBlock; use Spryker\Client\CmsSlotBlock\CmsSlotBlockDependencyProvider as SprykerCmsSlotBlockDependencyProvider; diff --git a/src/Pyz/Client/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchDependencyProvider.php b/src/Pyz/Client/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchDependencyProvider.php index 145e05d5e6..37545240bd 100644 --- a/src/Pyz/Client/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchDependencyProvider.php +++ b/src/Pyz/Client/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ConfigurableBundlePageSearch; use Spryker\Client\ConfigurableBundlePageSearch\ConfigurableBundlePageSearchDependencyProvider as SprykerConfigurableBundlePageSearchDependencyProvider; diff --git a/src/Pyz/Client/Currency/CurrencyDependencyProvider.php b/src/Pyz/Client/Currency/CurrencyDependencyProvider.php index 1b2376cea3..b85a3938ec 100644 --- a/src/Pyz/Client/Currency/CurrencyDependencyProvider.php +++ b/src/Pyz/Client/Currency/CurrencyDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Currency; use Spryker\Client\CartCurrencyConnector\CurrencyChange\CartUpdateCurrencyOnCurrencyChangePlugin; diff --git a/src/Pyz/Client/Customer/CustomerDependencyProvider.php b/src/Pyz/Client/Customer/CustomerDependencyProvider.php index 91cc2b1580..f0f464d176 100644 --- a/src/Pyz/Client/Customer/CustomerDependencyProvider.php +++ b/src/Pyz/Client/Customer/CustomerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Customer; use Spryker\Client\Cart\Plugin\CustomerChangeCartUpdatePlugin; diff --git a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClient.php b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClient.php index 1b7aaff919..cc638ec4c5 100644 --- a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClient.php +++ b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClient.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ExampleProductSalePage; use Spryker\Client\Kernel\AbstractClient; diff --git a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClientInterface.php b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClientInterface.php index 86eff6ceb2..147a07d7f5 100644 --- a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClientInterface.php +++ b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageClientInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ExampleProductSalePage; /** diff --git a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageConfig.php b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageConfig.php index c3ab107703..11ac3e60d6 100644 --- a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageConfig.php +++ b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ExampleProductSalePage; use Pyz\Shared\ExampleProductSalePage\ExampleProductSalePageConfig as SharedExampleProductSaleConfig; diff --git a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php index bbdd22736b..f943d63fad 100644 --- a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php +++ b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ExampleProductSalePage; use Pyz\Client\ExampleProductSalePage\Plugin\Elasticsearch\Query\SaleSearchQueryPlugin; diff --git a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageFactory.php b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageFactory.php index 54b38fcc70..a9f2e66652 100644 --- a/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageFactory.php +++ b/src/Pyz/Client/ExampleProductSalePage/ExampleProductSalePageFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ExampleProductSalePage; use Generated\Shared\Transfer\StoreTransfer; diff --git a/src/Pyz/Client/ExampleProductSalePage/Plugin/Elasticsearch/Query/SaleSearchQueryPlugin.php b/src/Pyz/Client/ExampleProductSalePage/Plugin/Elasticsearch/Query/SaleSearchQueryPlugin.php index 20b5b69aef..81895cf30c 100644 --- a/src/Pyz/Client/ExampleProductSalePage/Plugin/Elasticsearch/Query/SaleSearchQueryPlugin.php +++ b/src/Pyz/Client/ExampleProductSalePage/Plugin/Elasticsearch/Query/SaleSearchQueryPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ExampleProductSalePage\Plugin\Elasticsearch\Query; use Elastica\Query; @@ -163,7 +165,7 @@ protected function createSaleProductsQuery(): BoolQuery * * @return \Elastica\Query\Term */ - protected function createStringFacetFieldFilter($fieldName): Term + protected function createStringFacetFieldFilter(string $fieldName): Term { $termQuery = new Term(); $termQuery->setTerm(PageIndexMap::STRING_FACET_FACET_NAME, $fieldName); @@ -176,7 +178,7 @@ protected function createStringFacetFieldFilter($fieldName): Term * * @return \Elastica\Query\Term */ - protected function createStringFacetValueFilter($idProductLabel): Term + protected function createStringFacetValueFilter(int $idProductLabel): Term { $termQuery = new Term(); $termQuery->setTerm(PageIndexMap::STRING_FACET_FACET_VALUE, (string)$idProductLabel); diff --git a/src/Pyz/Client/Oauth/OauthDependencyProvider.php b/src/Pyz/Client/Oauth/OauthDependencyProvider.php index c76099b37a..4770f1182c 100644 --- a/src/Pyz/Client/Oauth/OauthDependencyProvider.php +++ b/src/Pyz/Client/Oauth/OauthDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Oauth; use Spryker\Client\Oauth\OauthDependencyProvider as SprykerOauthDependencyProvider; diff --git a/src/Pyz/Client/Permission/PermissionDependencyProvider.php b/src/Pyz/Client/Permission/PermissionDependencyProvider.php index 25e40d8af8..a130c80afe 100644 --- a/src/Pyz/Client/Permission/PermissionDependencyProvider.php +++ b/src/Pyz/Client/Permission/PermissionDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Permission; use Spryker\Client\CustomerAccessPermission\Plugin\CustomerAccessPermissionStoragePlugin; diff --git a/src/Pyz/Client/PersistentCart/PersistentCartDependencyProvider.php b/src/Pyz/Client/PersistentCart/PersistentCartDependencyProvider.php index 94a3e20175..16ed7f9d91 100644 --- a/src/Pyz/Client/PersistentCart/PersistentCartDependencyProvider.php +++ b/src/Pyz/Client/PersistentCart/PersistentCartDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\PersistentCart; use Spryker\Client\DiscountPromotion\Plugin\AddDiscountPromotionPersistentCartRequestExpanderPlugin; diff --git a/src/Pyz/Client/Price/PriceDependencyProvider.php b/src/Pyz/Client/Price/PriceDependencyProvider.php index 72c7f20ff5..c3550612fe 100644 --- a/src/Pyz/Client/Price/PriceDependencyProvider.php +++ b/src/Pyz/Client/Price/PriceDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Price; use Spryker\Client\PersistentCart\Plugin\UpdatePersistentCartPriceModePlugin; diff --git a/src/Pyz/Client/PriceProductStorage/PriceProductStorageDependencyProvider.php b/src/Pyz/Client/PriceProductStorage/PriceProductStorageDependencyProvider.php index 1e88225ef2..9ce31f25a5 100644 --- a/src/Pyz/Client/PriceProductStorage/PriceProductStorageDependencyProvider.php +++ b/src/Pyz/Client/PriceProductStorage/PriceProductStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\PriceProductStorage; use Spryker\Client\PriceProductStorage\PriceProductStorageDependencyProvider as SprykerPriceProductStorageDependencyProvider; diff --git a/src/Pyz/Client/ProductAlternativeStorage/ProductAlternativeStorageDependencyProvider.php b/src/Pyz/Client/ProductAlternativeStorage/ProductAlternativeStorageDependencyProvider.php index ecbc0ab15b..865732b8a4 100644 --- a/src/Pyz/Client/ProductAlternativeStorage/ProductAlternativeStorageDependencyProvider.php +++ b/src/Pyz/Client/ProductAlternativeStorage/ProductAlternativeStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductAlternativeStorage; use Spryker\Client\AvailabilityStorage\Plugin\ProductAlternativeStorage\AvailabilityCheckAlternativeProductApplicablePlugin; diff --git a/src/Pyz/Client/ProductCategoryStorage/ProductCategoryStorageDependencyProvider.php b/src/Pyz/Client/ProductCategoryStorage/ProductCategoryStorageDependencyProvider.php index ad61315b45..7d6068b491 100644 --- a/src/Pyz/Client/ProductCategoryStorage/ProductCategoryStorageDependencyProvider.php +++ b/src/Pyz/Client/ProductCategoryStorage/ProductCategoryStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductCategoryStorage; use Spryker\Client\CategoryStorage\Plugin\ProductCategoryStorage\ParentCategoryIdsProductAbstractCategoryStorageCollectionExpanderPlugin; diff --git a/src/Pyz/Client/ProductConfiguration/ProductConfigurationDependencyProvider.php b/src/Pyz/Client/ProductConfiguration/ProductConfigurationDependencyProvider.php index a91be20c28..39e084bf25 100644 --- a/src/Pyz/Client/ProductConfiguration/ProductConfigurationDependencyProvider.php +++ b/src/Pyz/Client/ProductConfiguration/ProductConfigurationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductConfiguration; use Spryker\Client\ProductConfiguration\Plugin\PriceProductVolumeProductConfigurationPriceExtractorPlugin; diff --git a/src/Pyz/Client/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php b/src/Pyz/Client/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php index 1a6f4cad8f..5bb4b3b54e 100644 --- a/src/Pyz/Client/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php +++ b/src/Pyz/Client/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductDiscontinuedStorage; use Spryker\Client\ProductDiscontinuedStorage\ProductDiscontinuedStorageConfig as SprykerProductDiscontinuedStorageConfig; diff --git a/src/Pyz/Client/ProductNew/ProductNewDependencyProvider.php b/src/Pyz/Client/ProductNew/ProductNewDependencyProvider.php index 73c9264579..1c5a3a1596 100644 --- a/src/Pyz/Client/ProductNew/ProductNewDependencyProvider.php +++ b/src/Pyz/Client/ProductNew/ProductNewDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductNew; use Spryker\Client\Catalog\Plugin\Elasticsearch\ResultFormatter\RawCatalogSearchResultFormatterPlugin; diff --git a/src/Pyz/Client/ProductRelationStorage/ProductRelationStorageDependencyProvider.php b/src/Pyz/Client/ProductRelationStorage/ProductRelationStorageDependencyProvider.php index e73c445929..334f025b56 100644 --- a/src/Pyz/Client/ProductRelationStorage/ProductRelationStorageDependencyProvider.php +++ b/src/Pyz/Client/ProductRelationStorage/ProductRelationStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductRelationStorage; use Spryker\Client\PriceProductStorage\Plugin\ProductViewPriceExpanderPlugin; diff --git a/src/Pyz/Client/ProductReview/ProductReviewConfig.php b/src/Pyz/Client/ProductReview/ProductReviewConfig.php index f430b109ad..c8643c0026 100644 --- a/src/Pyz/Client/ProductReview/ProductReviewConfig.php +++ b/src/Pyz/Client/ProductReview/ProductReviewConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductReview; use Spryker\Client\ProductReview\ProductReviewConfig as ProductReviewProductReviewConfig; diff --git a/src/Pyz/Client/ProductReview/ProductReviewDependencyProvider.php b/src/Pyz/Client/ProductReview/ProductReviewDependencyProvider.php index 1c79d2d979..54528a3e50 100644 --- a/src/Pyz/Client/ProductReview/ProductReviewDependencyProvider.php +++ b/src/Pyz/Client/ProductReview/ProductReviewDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductReview; use Spryker\Client\ProductReview\Plugin\Elasticsearch\QueryExpander\PaginatedProductReviewsQueryExpanderPlugin; diff --git a/src/Pyz/Client/ProductSetPageSearch/ProductSetPageSearchDependencyProvider.php b/src/Pyz/Client/ProductSetPageSearch/ProductSetPageSearchDependencyProvider.php index d12e25b093..65953fa62c 100644 --- a/src/Pyz/Client/ProductSetPageSearch/ProductSetPageSearchDependencyProvider.php +++ b/src/Pyz/Client/ProductSetPageSearch/ProductSetPageSearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductSetPageSearch; use Spryker\Client\ProductSetPageSearch\Plugin\Elasticsearch\ResultFormatter\ProductSetPageSearchListResultFormatterPlugin; diff --git a/src/Pyz/Client/ProductStorage/ProductStorageDependencyProvider.php b/src/Pyz/Client/ProductStorage/ProductStorageDependencyProvider.php index 2cdc3f263e..ab133c0f99 100644 --- a/src/Pyz/Client/ProductStorage/ProductStorageDependencyProvider.php +++ b/src/Pyz/Client/ProductStorage/ProductStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ProductStorage; use Spryker\Client\AvailabilityStorage\Plugin\ProductViewAvailabilityStorageExpanderPlugin; diff --git a/src/Pyz/Client/Queue/QueueDependencyProvider.php b/src/Pyz/Client/Queue/QueueDependencyProvider.php index ebb93905f5..339e580ac6 100644 --- a/src/Pyz/Client/Queue/QueueDependencyProvider.php +++ b/src/Pyz/Client/Queue/QueueDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Queue; use Spryker\Client\Kernel\Container; diff --git a/src/Pyz/Client/Quote/QuoteDependencyProvider.php b/src/Pyz/Client/Quote/QuoteDependencyProvider.php index 84b913acb9..e210f35f60 100644 --- a/src/Pyz/Client/Quote/QuoteDependencyProvider.php +++ b/src/Pyz/Client/Quote/QuoteDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Quote; use Spryker\Client\Kernel\Container; @@ -20,7 +22,7 @@ class QuoteDependencyProvider extends SprykerQuoteDependencyProvider * * @return array<\Spryker\Client\Quote\Dependency\Plugin\QuoteTransferExpanderPluginInterface> */ - protected function getQuoteTransferExpanderPlugins(Container $container): array + protected function getQuoteTransferExpanderPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new StoreQuoteTransferExpanderPlugin(), diff --git a/src/Pyz/Client/RabbitMq/RabbitMqConfig.php b/src/Pyz/Client/RabbitMq/RabbitMqConfig.php index 7936a92ef6..2007c2eedf 100644 --- a/src/Pyz/Client/RabbitMq/RabbitMqConfig.php +++ b/src/Pyz/Client/RabbitMq/RabbitMqConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\RabbitMq; use Spryker\Client\RabbitMq\RabbitMqConfig as SprykerRabbitMqConfig; diff --git a/src/Pyz/Client/SalesReturnSearch/SalesReturnSearchDependencyProvider.php b/src/Pyz/Client/SalesReturnSearch/SalesReturnSearchDependencyProvider.php index bb90c20fc2..84360944ec 100644 --- a/src/Pyz/Client/SalesReturnSearch/SalesReturnSearchDependencyProvider.php +++ b/src/Pyz/Client/SalesReturnSearch/SalesReturnSearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\SalesReturnSearch; use Spryker\Client\SalesReturnSearch\Plugin\Elasticsearch\Query\PaginatedReturnReasonSearchQueryExpanderPlugin; diff --git a/src/Pyz/Client/Search/SearchDependencyProvider.php b/src/Pyz/Client/Search/SearchDependencyProvider.php index 76082220cf..919f0bcc2f 100644 --- a/src/Pyz/Client/Search/SearchDependencyProvider.php +++ b/src/Pyz/Client/Search/SearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Search; use Spryker\Client\Catalog\Plugin\Config\CatalogSearchConfigBuilder; @@ -24,7 +26,7 @@ class SearchDependencyProvider extends SprykerSearchDependencyProvider * * @return \Spryker\Client\Search\Dependency\Plugin\SearchConfigBuilderInterface */ - protected function createSearchConfigBuilderPlugin(Container $container): SearchConfigBuilderInterface + protected function createSearchConfigBuilderPlugin(Container $container): SearchConfigBuilderInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return new CatalogSearchConfigBuilder(); } diff --git a/src/Pyz/Client/SearchElasticsearch/SearchElasticsearchDependencyProvider.php b/src/Pyz/Client/SearchElasticsearch/SearchElasticsearchDependencyProvider.php index c6721f40f0..9910614fa0 100644 --- a/src/Pyz/Client/SearchElasticsearch/SearchElasticsearchDependencyProvider.php +++ b/src/Pyz/Client/SearchElasticsearch/SearchElasticsearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\SearchElasticsearch; use Spryker\Client\Catalog\Plugin\SearchElasticsearch\ElasticsearchCatalogSearchConfigBuilderPlugin; @@ -19,7 +21,7 @@ class SearchElasticsearchDependencyProvider extends SprykerSearchElasticsearchDe * * @return array<\Spryker\Client\SearchExtension\Dependency\Plugin\SearchConfigBuilderPluginInterface> */ - protected function getSearchConfigBuilderPlugins(Container $container): array + protected function getSearchConfigBuilderPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ElasticsearchCatalogSearchConfigBuilderPlugin(), @@ -31,7 +33,7 @@ protected function getSearchConfigBuilderPlugins(Container $container): array * * @return array<\Spryker\Client\SearchExtension\Dependency\Plugin\SearchConfigExpanderPluginInterface> */ - protected function getSearchConfigExpanderPlugins(Container $container): array + protected function getSearchConfigExpanderPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ProductSearchConfigExpanderPlugin(), diff --git a/src/Pyz/Client/SearchHttp/SearchHttpDependencyProvider.php b/src/Pyz/Client/SearchHttp/SearchHttpDependencyProvider.php index c74f92184f..0907af2ea5 100644 --- a/src/Pyz/Client/SearchHttp/SearchHttpDependencyProvider.php +++ b/src/Pyz/Client/SearchHttp/SearchHttpDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\SearchHttp; use Spryker\Client\Catalog\Plugin\ConfigTransferBuilder\CategoryFacetConfigTransferBuilderPlugin; diff --git a/src/Pyz/Client/SecurityBlocker/SecurityBlockerDependencyProvider.php b/src/Pyz/Client/SecurityBlocker/SecurityBlockerDependencyProvider.php index 213aba494a..077fab7f60 100644 --- a/src/Pyz/Client/SecurityBlocker/SecurityBlockerDependencyProvider.php +++ b/src/Pyz/Client/SecurityBlocker/SecurityBlockerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\SecurityBlocker; use Spryker\Client\SecurityBlocker\SecurityBlockerDependencyProvider as SprykerSecurityBlockerDependencyProvider; diff --git a/src/Pyz/Client/Storage/StorageDependencyProvider.php b/src/Pyz/Client/Storage/StorageDependencyProvider.php index fa701f7b6f..c2fe0b05be 100644 --- a/src/Pyz/Client/Storage/StorageDependencyProvider.php +++ b/src/Pyz/Client/Storage/StorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Storage; use Spryker\Client\Storage\StorageDependencyProvider as SprykerStorageDependencyProvider; diff --git a/src/Pyz/Client/Store/StoreDependencyProvider.php b/src/Pyz/Client/Store/StoreDependencyProvider.php index 08daad3e97..90b1915e79 100644 --- a/src/Pyz/Client/Store/StoreDependencyProvider.php +++ b/src/Pyz/Client/Store/StoreDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Store; use Spryker\Client\Store\StoreDependencyProvider as SprykerStoreDependencyProvider; diff --git a/src/Pyz/Client/UrlStorage/UrlStorageDependencyProvider.php b/src/Pyz/Client/UrlStorage/UrlStorageDependencyProvider.php index be7e7b8cbb..a7e79a90e8 100644 --- a/src/Pyz/Client/UrlStorage/UrlStorageDependencyProvider.php +++ b/src/Pyz/Client/UrlStorage/UrlStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\UrlStorage; use Spryker\Client\CategoryStorage\Plugin\UrlStorageCategoryNodeMapperPlugin; diff --git a/src/Pyz/Client/Wishlist/WishlistDependencyProvider.php b/src/Pyz/Client/Wishlist/WishlistDependencyProvider.php index f04ad434a5..0613d910d2 100644 --- a/src/Pyz/Client/Wishlist/WishlistDependencyProvider.php +++ b/src/Pyz/Client/Wishlist/WishlistDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\Wishlist; use Spryker\Client\ProductConfigurationWishlist\Plugin\Wishlist\ProductConfigurationWishlistCollectionToRemoveExpanderPlugin; diff --git a/src/Pyz/Client/ZedRequest/ZedRequestDependencyProvider.php b/src/Pyz/Client/ZedRequest/ZedRequestDependencyProvider.php index 005649afbe..a589db8f24 100644 --- a/src/Pyz/Client/ZedRequest/ZedRequestDependencyProvider.php +++ b/src/Pyz/Client/ZedRequest/ZedRequestDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Client\ZedRequest; use Spryker\Client\Currency\Plugin\ZedRequestMetaDataProviderPlugin; diff --git a/src/Pyz/Glue/AuthRestApi/AuthRestApiDependencyProvider.php b/src/Pyz/Glue/AuthRestApi/AuthRestApiDependencyProvider.php index 45203e18bc..6f24a8bbc4 100644 --- a/src/Pyz/Glue/AuthRestApi/AuthRestApiDependencyProvider.php +++ b/src/Pyz/Glue/AuthRestApi/AuthRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\AuthRestApi; use Spryker\Glue\AgentAuthRestApi\Plugin\AuthRestApi\AgentRestUserMapperPlugin; diff --git a/src/Pyz/Glue/CartCodesRestApi/CartCodesRestApiDependencyProvider.php b/src/Pyz/Glue/CartCodesRestApi/CartCodesRestApiDependencyProvider.php index 47e6483d80..865b64cc2d 100644 --- a/src/Pyz/Glue/CartCodesRestApi/CartCodesRestApiDependencyProvider.php +++ b/src/Pyz/Glue/CartCodesRestApi/CartCodesRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CartCodesRestApi; use Spryker\Glue\CartCodesRestApi\CartCodesRestApiDependencyProvider as SprykerCartCodesRestApiDependencyProvider; diff --git a/src/Pyz/Glue/CartsRestApi/CartsRestApiConfig.php b/src/Pyz/Glue/CartsRestApi/CartsRestApiConfig.php index 0461313ddf..056b885cd6 100644 --- a/src/Pyz/Glue/CartsRestApi/CartsRestApiConfig.php +++ b/src/Pyz/Glue/CartsRestApi/CartsRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CartsRestApi; use Spryker\Glue\CartsRestApi\CartsRestApiConfig as SprykerCartsRestApiConfig; diff --git a/src/Pyz/Glue/CartsRestApi/CartsRestApiDependencyProvider.php b/src/Pyz/Glue/CartsRestApi/CartsRestApiDependencyProvider.php index 4592480c91..f31cd2e91a 100644 --- a/src/Pyz/Glue/CartsRestApi/CartsRestApiDependencyProvider.php +++ b/src/Pyz/Glue/CartsRestApi/CartsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CartsRestApi; use Spryker\Glue\CartsRestApi\CartsRestApiDependencyProvider as SprykerCartsRestApiDependencyProvider; diff --git a/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiConfig.php b/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiConfig.php index c12164542f..9d84eb22da 100644 --- a/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiConfig.php +++ b/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CheckoutRestApi; use Spryker\Glue\CheckoutRestApi\CheckoutRestApiConfig as SprykerCheckoutRestApiConfig; diff --git a/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiDependencyProvider.php b/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiDependencyProvider.php index 8b9a44d74f..4ebe7e6b4e 100644 --- a/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiDependencyProvider.php +++ b/src/Pyz/Glue/CheckoutRestApi/CheckoutRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CheckoutRestApi; use Spryker\Glue\CheckoutRestApi\CheckoutRestApiDependencyProvider as SprykerCheckoutRestApiDependencyProvider; diff --git a/src/Pyz/Glue/Console/ConsoleDependencyProvider.php b/src/Pyz/Glue/Console/ConsoleDependencyProvider.php index 6924b6ede3..3889486a4f 100644 --- a/src/Pyz/Glue/Console/ConsoleDependencyProvider.php +++ b/src/Pyz/Glue/Console/ConsoleDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\Console; use Spryker\Glue\Console\ConsoleDependencyProvider as SprykerConsoleDependencyProvider; @@ -22,7 +24,7 @@ class ConsoleDependencyProvider extends SprykerConsoleDependencyProvider * * @return array<\Symfony\Component\Console\Command\Command> */ - protected function getConsoleCommands(Container $container): array + protected function getConsoleCommands(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ApiGenerateDocumentationConsole(), diff --git a/src/Pyz/Glue/CustomerAccessRestApi/CustomerAccessRestApiConfig.php b/src/Pyz/Glue/CustomerAccessRestApi/CustomerAccessRestApiConfig.php index bb49ea0316..1f3a0b7720 100644 --- a/src/Pyz/Glue/CustomerAccessRestApi/CustomerAccessRestApiConfig.php +++ b/src/Pyz/Glue/CustomerAccessRestApi/CustomerAccessRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CustomerAccessRestApi; use Pyz\Glue\CheckoutRestApi\CheckoutRestApiConfig; diff --git a/src/Pyz/Glue/CustomersRestApi/CustomersRestApiDependencyProvider.php b/src/Pyz/Glue/CustomersRestApi/CustomersRestApiDependencyProvider.php index 6f7e541bd0..88c63b6e99 100644 --- a/src/Pyz/Glue/CustomersRestApi/CustomersRestApiDependencyProvider.php +++ b/src/Pyz/Glue/CustomersRestApi/CustomersRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\CustomersRestApi; use Spryker\Glue\CartsRestApi\Plugin\CustomersRestApi\UpdateCartCreateCustomerReferencePlugin; diff --git a/src/Pyz/Glue/DocumentationGeneratorApi/DocumentationGeneratorApiDependencyProvider.php b/src/Pyz/Glue/DocumentationGeneratorApi/DocumentationGeneratorApiDependencyProvider.php index 5e6eeac846..faba498ee0 100644 --- a/src/Pyz/Glue/DocumentationGeneratorApi/DocumentationGeneratorApiDependencyProvider.php +++ b/src/Pyz/Glue/DocumentationGeneratorApi/DocumentationGeneratorApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\DocumentationGeneratorApi; use Spryker\Glue\DocumentationGeneratorApi\DocumentationGeneratorApiDependencyProvider as SprykerDocumentationGeneratorApiDependencyProvider; diff --git a/src/Pyz/Glue/DocumentationGeneratorOpenApi/DocumentationGeneratorOpenApiDependencyProvider.php b/src/Pyz/Glue/DocumentationGeneratorOpenApi/DocumentationGeneratorOpenApiDependencyProvider.php index dc79878fad..02b3b36509 100644 --- a/src/Pyz/Glue/DocumentationGeneratorOpenApi/DocumentationGeneratorOpenApiDependencyProvider.php +++ b/src/Pyz/Glue/DocumentationGeneratorOpenApi/DocumentationGeneratorOpenApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\DocumentationGeneratorOpenApi; use Spryker\Glue\DocumentationGeneratorOpenApi\DocumentationGeneratorOpenApiDependencyProvider as SprykerDocumentationGeneratorOpenApiDependencyProvider; diff --git a/src/Pyz/Glue/EntityTagsRestApi/EntityTagsRestApiConfig.php b/src/Pyz/Glue/EntityTagsRestApi/EntityTagsRestApiConfig.php index bf529be590..31eac17cdd 100644 --- a/src/Pyz/Glue/EntityTagsRestApi/EntityTagsRestApiConfig.php +++ b/src/Pyz/Glue/EntityTagsRestApi/EntityTagsRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\EntityTagsRestApi; use Spryker\Glue\CartsRestApi\CartsRestApiConfig; diff --git a/src/Pyz/Glue/EventDispatcher/EventDispatcherDependencyProvider.php b/src/Pyz/Glue/EventDispatcher/EventDispatcherDependencyProvider.php index a35c2040b8..0c6d263cd3 100644 --- a/src/Pyz/Glue/EventDispatcher/EventDispatcherDependencyProvider.php +++ b/src/Pyz/Glue/EventDispatcher/EventDispatcherDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\EventDispatcher; use Spryker\Glue\EventBehavior\Plugin\EventDispatcher\EventBehaviorEventDispatcherPlugin; diff --git a/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBackendApiBootstrap.php b/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBackendApiBootstrap.php index 294dda2e4b..d446ed081d 100644 --- a/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBackendApiBootstrap.php +++ b/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBackendApiBootstrap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueApplication\Bootstrap; use Spryker\Glue\GlueApplication\Bootstrap\GlueBootstrap; @@ -18,7 +20,7 @@ class GlueBackendApiBootstrap extends GlueBootstrap * * @return \Spryker\Shared\Application\ApplicationInterface */ - public function boot(array $glueApplicationBootstrapPluginClassNames = []): ApplicationInterface + public function boot(array $glueApplicationBootstrapPluginClassNames = []): ApplicationInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return parent::boot([BackendApiGlueApplicationBootstrapPlugin::class]); } diff --git a/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBootstrap.php b/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBootstrap.php index 59963e43f1..430c71d3b9 100644 --- a/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBootstrap.php +++ b/src/Pyz/Glue/GlueApplication/Bootstrap/GlueBootstrap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueApplication\Bootstrap; use Spryker\Glue\GlueApplication\Bootstrap\GlueBootstrap as SprykerGlueBootstrap; @@ -18,7 +20,7 @@ class GlueBootstrap extends SprykerGlueBootstrap * * @return \Spryker\Shared\Application\ApplicationInterface */ - public function boot(array $glueApplicationBootstrapPluginClassNames = []): ApplicationInterface + public function boot(array $glueApplicationBootstrapPluginClassNames = []): ApplicationInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return parent::boot([FallbackStorefrontApiGlueApplicationBootstrapPlugin::class]); } diff --git a/src/Pyz/Glue/GlueApplication/Bootstrap/GlueStorefrontApiBootstrap.php b/src/Pyz/Glue/GlueApplication/Bootstrap/GlueStorefrontApiBootstrap.php index 8163c9a3bf..89e7a9831b 100644 --- a/src/Pyz/Glue/GlueApplication/Bootstrap/GlueStorefrontApiBootstrap.php +++ b/src/Pyz/Glue/GlueApplication/Bootstrap/GlueStorefrontApiBootstrap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueApplication\Bootstrap; use Spryker\Glue\GlueApplication\Bootstrap\GlueBootstrap; @@ -18,7 +20,7 @@ class GlueStorefrontApiBootstrap extends GlueBootstrap * * @return \Spryker\Shared\Application\ApplicationInterface */ - public function boot(array $glueApplicationBootstrapPluginClassNames = []): ApplicationInterface + public function boot(array $glueApplicationBootstrapPluginClassNames = []): ApplicationInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return parent::boot([StorefrontApiGlueApplicationBootstrapPlugin::class]); } diff --git a/src/Pyz/Glue/GlueApplication/GlueApplicationConfig.php b/src/Pyz/Glue/GlueApplication/GlueApplicationConfig.php index 1c3608ab37..ef9e83af43 100644 --- a/src/Pyz/Glue/GlueApplication/GlueApplicationConfig.php +++ b/src/Pyz/Glue/GlueApplication/GlueApplicationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueApplication; use Spryker\Glue\CartsRestApi\CartsRestApiConfig; diff --git a/src/Pyz/Glue/GlueApplication/GlueApplicationDependencyProvider.php b/src/Pyz/Glue/GlueApplication/GlueApplicationDependencyProvider.php index 635e4f3856..8442651098 100644 --- a/src/Pyz/Glue/GlueApplication/GlueApplicationDependencyProvider.php +++ b/src/Pyz/Glue/GlueApplication/GlueApplicationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueApplication; use Spryker\Glue\AgentAuthRestApi\Plugin\GlueApplication\AgentAccessTokenRestRequestValidatorPlugin; diff --git a/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationConfig.php b/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationConfig.php index 31e2b2c822..99e4cfc60c 100644 --- a/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationConfig.php +++ b/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueBackendApiApplication; use Spryker\Glue\GlueBackendApiApplication\GlueBackendApiApplicationConfig as SprykerGlueBackendApiApplicationConfig; diff --git a/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationDependencyProvider.php b/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationDependencyProvider.php index f9a5c180f0..73d6499c5f 100644 --- a/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationDependencyProvider.php +++ b/src/Pyz/Glue/GlueBackendApiApplication/GlueBackendApiApplicationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueBackendApiApplication; use Spryker\Glue\DynamicEntityBackendApi\Plugin\GlueApplication\DynamicEntityRouteProviderPlugin; diff --git a/src/Pyz/Glue/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php b/src/Pyz/Glue/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php index 8708843bcd..b58a561f6c 100644 --- a/src/Pyz/Glue/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php +++ b/src/Pyz/Glue/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueBackendApiApplicationAuthorizationConnector; use Spryker\Glue\ApiKeyAuthorizationConnector\Plugin\GlueBackendApiApplicationAuthorizationConnector\ApiKeyAuthorizationRequestExpanderPlugin; diff --git a/src/Pyz/Glue/GlueBackendApiApplicationGlueJsonApiConventionConnector/GlueBackendApiApplicationGlueJsonApiConventionConnectorDependencyProvider.php b/src/Pyz/Glue/GlueBackendApiApplicationGlueJsonApiConventionConnector/GlueBackendApiApplicationGlueJsonApiConventionConnectorDependencyProvider.php index 414220a814..78f05c8505 100644 --- a/src/Pyz/Glue/GlueBackendApiApplicationGlueJsonApiConventionConnector/GlueBackendApiApplicationGlueJsonApiConventionConnectorDependencyProvider.php +++ b/src/Pyz/Glue/GlueBackendApiApplicationGlueJsonApiConventionConnector/GlueBackendApiApplicationGlueJsonApiConventionConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueBackendApiApplicationGlueJsonApiConventionConnector; use Spryker\Glue\GlueBackendApiApplicationGlueJsonApiConventionConnector\GlueBackendApiApplicationGlueJsonApiConventionConnectorDependencyProvider as SprykerGlueBackendApiApplicationGlueJsonApiConventionConnectorDependencyProvider; diff --git a/src/Pyz/Glue/GlueJsonApiConvention/GlueJsonApiConventionDependencyProvider.php b/src/Pyz/Glue/GlueJsonApiConvention/GlueJsonApiConventionDependencyProvider.php index 8c7cc23b19..d90cab0507 100644 --- a/src/Pyz/Glue/GlueJsonApiConvention/GlueJsonApiConventionDependencyProvider.php +++ b/src/Pyz/Glue/GlueJsonApiConvention/GlueJsonApiConventionDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueJsonApiConvention; use Spryker\Glue\GlueBackendApiApplicationGlueJsonApiConventionConnector\Plugin\GlueJsonApiConvention\BackendApiRelationshipProviderPlugin; diff --git a/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationConfig.php b/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationConfig.php index f815465268..39b45a9ec9 100644 --- a/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationConfig.php +++ b/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueStorefrontApiApplication; use Spryker\Glue\GlueStorefrontApiApplication\GlueStorefrontApiApplicationConfig as SprykerGlueStorefrontApiApplicationConfig; diff --git a/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationDependencyProvider.php b/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationDependencyProvider.php index fbeb7b07af..94880aa36a 100644 --- a/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationDependencyProvider.php +++ b/src/Pyz/Glue/GlueStorefrontApiApplication/GlueStorefrontApiApplicationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\GlueStorefrontApiApplication; use Spryker\Glue\EventDispatcher\Plugin\Application\EventDispatcherApplicationPlugin; diff --git a/src/Pyz/Glue/HealthCheck/HealthCheckDependencyProvider.php b/src/Pyz/Glue/HealthCheck/HealthCheckDependencyProvider.php index 6e1f9c57a5..b9f2ebdb5b 100644 --- a/src/Pyz/Glue/HealthCheck/HealthCheckDependencyProvider.php +++ b/src/Pyz/Glue/HealthCheck/HealthCheckDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\HealthCheck; use Spryker\Glue\HealthCheck\HealthCheckDependencyProvider as SprykerHealthCheckDependencyProvider; diff --git a/src/Pyz/Glue/Log/LogDependencyProvider.php b/src/Pyz/Glue/Log/LogDependencyProvider.php index 558996ffd5..17b5759d3d 100644 --- a/src/Pyz/Glue/Log/LogDependencyProvider.php +++ b/src/Pyz/Glue/Log/LogDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\Log; use Spryker\Glue\Log\LogDependencyProvider as SprykerLogDependencyProvider; diff --git a/src/Pyz/Glue/NavigationsRestApi/NavigationsRestApiConfig.php b/src/Pyz/Glue/NavigationsRestApi/NavigationsRestApiConfig.php index 8b81b2e51c..0ecd38b2ac 100644 --- a/src/Pyz/Glue/NavigationsRestApi/NavigationsRestApiConfig.php +++ b/src/Pyz/Glue/NavigationsRestApi/NavigationsRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\NavigationsRestApi; use Spryker\Glue\NavigationsRestApi\NavigationsRestApiConfig as SprykerNavigationsRestApiConfig; diff --git a/src/Pyz/Glue/OauthApi/OauthApiConfig.php b/src/Pyz/Glue/OauthApi/OauthApiConfig.php index 53538af436..fff27bea21 100644 --- a/src/Pyz/Glue/OauthApi/OauthApiConfig.php +++ b/src/Pyz/Glue/OauthApi/OauthApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\OauthApi; use Spryker\Glue\OauthApi\OauthApiConfig as SprykerOauthApiConfig; diff --git a/src/Pyz/Glue/OauthBackendApi/OauthBackendApiConfig.php b/src/Pyz/Glue/OauthBackendApi/OauthBackendApiConfig.php index 2c7df8e01d..7ce5762ab4 100644 --- a/src/Pyz/Glue/OauthBackendApi/OauthBackendApiConfig.php +++ b/src/Pyz/Glue/OauthBackendApi/OauthBackendApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\OauthBackendApi; use Spryker\Glue\OauthBackendApi\OauthBackendApiConfig as SprykerOauthBackendApiConfig; diff --git a/src/Pyz/Glue/OauthBackendApi/OauthBackendApiDependencyProvider.php b/src/Pyz/Glue/OauthBackendApi/OauthBackendApiDependencyProvider.php index acaf6e3622..f9fd3fd173 100644 --- a/src/Pyz/Glue/OauthBackendApi/OauthBackendApiDependencyProvider.php +++ b/src/Pyz/Glue/OauthBackendApi/OauthBackendApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\OauthBackendApi; use Spryker\Glue\OauthBackendApi\OauthBackendApiDependencyProvider as SprykerOauthBackendApiDependencyProvider; diff --git a/src/Pyz/Glue/OrdersRestApi/OrdersRestApiDependencyProvider.php b/src/Pyz/Glue/OrdersRestApi/OrdersRestApiDependencyProvider.php index 5dd53ca2ba..61bb1dc193 100644 --- a/src/Pyz/Glue/OrdersRestApi/OrdersRestApiDependencyProvider.php +++ b/src/Pyz/Glue/OrdersRestApi/OrdersRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\OrdersRestApi; use Spryker\Glue\ConfigurableBundlesRestApi\Plugin\OrdersRestApi\SalesConfiguredBundleRestOrderItemsAttributesMapperPlugin; diff --git a/src/Pyz/Glue/PaymentsRestApi/PaymentsRestApiConfig.php b/src/Pyz/Glue/PaymentsRestApi/PaymentsRestApiConfig.php index 84b8d8594e..21f12bb5b1 100644 --- a/src/Pyz/Glue/PaymentsRestApi/PaymentsRestApiConfig.php +++ b/src/Pyz/Glue/PaymentsRestApi/PaymentsRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\PaymentsRestApi; use Spryker\Glue\PaymentsRestApi\PaymentsRestApiConfig as SprykerPaymentsRestApiConfig; diff --git a/src/Pyz/Glue/ProductConfigurationsRestApi/ProductConfigurationsRestApiDependencyProvider.php b/src/Pyz/Glue/ProductConfigurationsRestApi/ProductConfigurationsRestApiDependencyProvider.php index a5bdcacd76..cf54d2d0c0 100644 --- a/src/Pyz/Glue/ProductConfigurationsRestApi/ProductConfigurationsRestApiDependencyProvider.php +++ b/src/Pyz/Glue/ProductConfigurationsRestApi/ProductConfigurationsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\ProductConfigurationsRestApi; use Spryker\Glue\ProductConfigurationsPriceProductVolumesRestApi\Plugin\ProductConfigurationsRestApi\ProductConfigurationVolumePriceProductConfigurationPriceMapperPlugin; diff --git a/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiConfig.php b/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiConfig.php index 4f41f9e94f..7af021ff35 100644 --- a/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiConfig.php +++ b/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\ProductPricesRestApi; use Spryker\Glue\ProductPricesRestApi\ProductPricesRestApiConfig as SprykerProductPricesRestApiConfig; diff --git a/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiDependencyProvider.php b/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiDependencyProvider.php index 3b71fb4fb3..aad956e90e 100644 --- a/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiDependencyProvider.php +++ b/src/Pyz/Glue/ProductPricesRestApi/ProductPricesRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\ProductPricesRestApi; use Spryker\Glue\PriceProductVolumesRestApi\Plugin\ProductPriceRestApi\PriceProductVolumeRestProductPricesAttributesMapperPlugin; diff --git a/src/Pyz/Glue/ProductsRestApi/ProductsRestApiDependencyProvider.php b/src/Pyz/Glue/ProductsRestApi/ProductsRestApiDependencyProvider.php index f827d7e285..08ba3b5bdf 100644 --- a/src/Pyz/Glue/ProductsRestApi/ProductsRestApiDependencyProvider.php +++ b/src/Pyz/Glue/ProductsRestApi/ProductsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\ProductsRestApi; use Spryker\Glue\ProductAttributesRestApi\Plugin\ProductsRestApi\MultiSelectAttributeAbstractProductsResourceExpanderPlugin; diff --git a/src/Pyz/Glue/Router/RouterDependencyProvider.php b/src/Pyz/Glue/Router/RouterDependencyProvider.php index 2f061ce4ce..81233a3ac5 100644 --- a/src/Pyz/Glue/Router/RouterDependencyProvider.php +++ b/src/Pyz/Glue/Router/RouterDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\Router; use Spryker\Glue\GlueApplication\Plugin\Rest\GlueRouterPlugin; diff --git a/src/Pyz/Glue/SalesOrdersBackendApi/SalesOrdersBackendApiDependencyProvider.php b/src/Pyz/Glue/SalesOrdersBackendApi/SalesOrdersBackendApiDependencyProvider.php index 47d16badc7..d34bb0504a 100644 --- a/src/Pyz/Glue/SalesOrdersBackendApi/SalesOrdersBackendApiDependencyProvider.php +++ b/src/Pyz/Glue/SalesOrdersBackendApi/SalesOrdersBackendApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\SalesOrdersBackendApi; use Spryker\Glue\CartNotesBackendApi\Plugin\SalesOrdersBackendApi\CartNoteOrdersBackendApiAttributesMapperPlugin; diff --git a/src/Pyz/Glue/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php b/src/Pyz/Glue/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php index 55165b41ef..543a0e20fd 100644 --- a/src/Pyz/Glue/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php +++ b/src/Pyz/Glue/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\ShipmentsRestApi; use Spryker\Glue\CustomersRestApi\Plugin\ShipmentsRestApi\CustomerAddressSourceCheckerPlugin; diff --git a/src/Pyz/Glue/TestifyBackendApi/TestifyBackendApiConfig.php b/src/Pyz/Glue/TestifyBackendApi/TestifyBackendApiConfig.php index 674179357b..6b2dcf383c 100644 --- a/src/Pyz/Glue/TestifyBackendApi/TestifyBackendApiConfig.php +++ b/src/Pyz/Glue/TestifyBackendApi/TestifyBackendApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\TestifyBackendApi; use Spryker\Glue\TestifyBackendApi\TestifyBackendApiConfig as SprykerTestifyBackendApiConfig; diff --git a/src/Pyz/Glue/UrlsRestApi/UrlsRestApiDependencyProvider.php b/src/Pyz/Glue/UrlsRestApi/UrlsRestApiDependencyProvider.php index 5a834cf5fc..ecbfef9ea8 100644 --- a/src/Pyz/Glue/UrlsRestApi/UrlsRestApiDependencyProvider.php +++ b/src/Pyz/Glue/UrlsRestApi/UrlsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Glue\UrlsRestApi; use Spryker\Glue\CategoriesRestApi\Plugin\UrlsRestApi\CategoryNodeRestUrlResolverAttributesTransferProviderPlugin; diff --git a/src/Pyz/Service/Barcode/BarcodeDependencyProvider.php b/src/Pyz/Service/Barcode/BarcodeDependencyProvider.php index 406982f58a..0aed67ac05 100755 --- a/src/Pyz/Service/Barcode/BarcodeDependencyProvider.php +++ b/src/Pyz/Service/Barcode/BarcodeDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Service\Barcode; use Spryker\Service\Barcode\BarcodeDependencyProvider as SprykerDependencyProvider; diff --git a/src/Pyz/Service/FileSystem/FileSystemDependencyProvider.php b/src/Pyz/Service/FileSystem/FileSystemDependencyProvider.php index 85df69c419..306b945565 100644 --- a/src/Pyz/Service/FileSystem/FileSystemDependencyProvider.php +++ b/src/Pyz/Service/FileSystem/FileSystemDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Service\FileSystem; use Spryker\Service\FileSystem\FileSystemDependencyProvider as SprykerFileSystemDependencyProvider; diff --git a/src/Pyz/Service/Flysystem/FlysystemDependencyProvider.php b/src/Pyz/Service/Flysystem/FlysystemDependencyProvider.php index 73d042315c..48739b7bab 100644 --- a/src/Pyz/Service/Flysystem/FlysystemDependencyProvider.php +++ b/src/Pyz/Service/Flysystem/FlysystemDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Service\Flysystem; use Spryker\Service\Flysystem\FlysystemDependencyProvider as SprykerFlysystemDependencyProvider; diff --git a/src/Pyz/Service/PriceProduct/PriceProductDependencyProvider.php b/src/Pyz/Service/PriceProduct/PriceProductDependencyProvider.php index 89de153a74..3becb5695c 100644 --- a/src/Pyz/Service/PriceProduct/PriceProductDependencyProvider.php +++ b/src/Pyz/Service/PriceProduct/PriceProductDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Service\PriceProduct; use Spryker\Service\PriceProduct\PriceProductDependencyProvider as SprykerPriceProductDependencyProvider; diff --git a/src/Pyz/Service/ProductConfiguration/ProductConfigurationConfig.php b/src/Pyz/Service/ProductConfiguration/ProductConfigurationConfig.php index ad8ba25c55..412f48ca27 100644 --- a/src/Pyz/Service/ProductConfiguration/ProductConfigurationConfig.php +++ b/src/Pyz/Service/ProductConfiguration/ProductConfigurationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Service\ProductConfiguration; use Generated\Shared\Transfer\ProductConfigurationInstanceTransfer; diff --git a/src/Pyz/Shared/CmsContentWidgetProductConnector/ContentWidgetConfigurationProvider/CmsProductGroupContentWidgetConfigurationProvider.php b/src/Pyz/Shared/CmsContentWidgetProductConnector/ContentWidgetConfigurationProvider/CmsProductGroupContentWidgetConfigurationProvider.php index 35463908c5..3fb5431cfd 100644 --- a/src/Pyz/Shared/CmsContentWidgetProductConnector/ContentWidgetConfigurationProvider/CmsProductGroupContentWidgetConfigurationProvider.php +++ b/src/Pyz/Shared/CmsContentWidgetProductConnector/ContentWidgetConfigurationProvider/CmsProductGroupContentWidgetConfigurationProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\CmsContentWidgetProductConnector\ContentWidgetConfigurationProvider; use SprykerShop\Shared\CmsContentWidgetProductConnector\ContentWidgetConfigurationProvider\CmsProductGroupContentWidgetConfigurationProvider as SprykerCmsProductGroupContentWidgetConfigurationProvider; diff --git a/src/Pyz/Shared/Console/ConsoleConstants.php b/src/Pyz/Shared/Console/ConsoleConstants.php index 17d07f0895..6e301067fa 100644 --- a/src/Pyz/Shared/Console/ConsoleConstants.php +++ b/src/Pyz/Shared/Console/ConsoleConstants.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\Console; interface ConsoleConstants diff --git a/src/Pyz/Shared/ContentBannerGui/ContentBannerGuiConfig.php b/src/Pyz/Shared/ContentBannerGui/ContentBannerGuiConfig.php index ac048e433b..126682448d 100644 --- a/src/Pyz/Shared/ContentBannerGui/ContentBannerGuiConfig.php +++ b/src/Pyz/Shared/ContentBannerGui/ContentBannerGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\ContentBannerGui; use Spryker\Shared\ContentBannerGui\ContentBannerGuiConfig as SprykerContentBannerGuiConfig; diff --git a/src/Pyz/Shared/ContentNavigation/ContentNavigationConfig.php b/src/Pyz/Shared/ContentNavigation/ContentNavigationConfig.php index 93aa382bcd..733b635f80 100644 --- a/src/Pyz/Shared/ContentNavigation/ContentNavigationConfig.php +++ b/src/Pyz/Shared/ContentNavigation/ContentNavigationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\ContentNavigation; use Spryker\Shared\ContentNavigation\ContentNavigationConfig as SprykerContentNavigationConfig; diff --git a/src/Pyz/Shared/ContentNavigationGui/ContentNavigationGuiConfig.php b/src/Pyz/Shared/ContentNavigationGui/ContentNavigationGuiConfig.php index a2e31a61a2..027fadbb24 100644 --- a/src/Pyz/Shared/ContentNavigationGui/ContentNavigationGuiConfig.php +++ b/src/Pyz/Shared/ContentNavigationGui/ContentNavigationGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\ContentNavigationGui; use Spryker\Shared\ContentNavigationGui\ContentNavigationGuiConfig as SprykerContentNavigationGuiConfig; diff --git a/src/Pyz/Shared/ContentProductGui/ContentProductGuiConfig.php b/src/Pyz/Shared/ContentProductGui/ContentProductGuiConfig.php index 43de42bedb..2c3d563143 100644 --- a/src/Pyz/Shared/ContentProductGui/ContentProductGuiConfig.php +++ b/src/Pyz/Shared/ContentProductGui/ContentProductGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\ContentProductGui; use Spryker\Shared\ContentProductGui\ContentProductGuiConfig as SprykerContentProductGuiConfig; diff --git a/src/Pyz/Shared/ContentProductSetGui/ContentProductSetGuiConfig.php b/src/Pyz/Shared/ContentProductSetGui/ContentProductSetGuiConfig.php index 76988984d6..7410e2f239 100644 --- a/src/Pyz/Shared/ContentProductSetGui/ContentProductSetGuiConfig.php +++ b/src/Pyz/Shared/ContentProductSetGui/ContentProductSetGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\ContentProductSetGui; use Spryker\Shared\ContentProductSetGui\ContentProductSetGuiConfig as SprykerContentProductSetGuiConfig; diff --git a/src/Pyz/Shared/Customer/CustomerConfig.php b/src/Pyz/Shared/Customer/CustomerConfig.php index fa32398edd..f99c3aa5b8 100644 --- a/src/Pyz/Shared/Customer/CustomerConfig.php +++ b/src/Pyz/Shared/Customer/CustomerConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\Customer; use Spryker\Shared\Customer\CustomerConfig as SprykerCustomerConfig; diff --git a/src/Pyz/Shared/ExampleProductSalePage/ExampleProductSalePageConfig.php b/src/Pyz/Shared/ExampleProductSalePage/ExampleProductSalePageConfig.php index dcda752459..cb10e36a1e 100644 --- a/src/Pyz/Shared/ExampleProductSalePage/ExampleProductSalePageConfig.php +++ b/src/Pyz/Shared/ExampleProductSalePage/ExampleProductSalePageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\ExampleProductSalePage; interface ExampleProductSalePageConfig diff --git a/src/Pyz/Shared/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorConfig.php b/src/Pyz/Shared/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorConfig.php index e2350bd386..f91f10481c 100644 --- a/src/Pyz/Shared/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorConfig.php +++ b/src/Pyz/Shared/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\GlueBackendApiApplicationAuthorizationConnector; use Spryker\Shared\GlueBackendApiApplicationAuthorizationConnector\GlueBackendApiApplicationAuthorizationConnectorConfig as SprykerGlueBackendApiApplicationAuthorizationConnectorConfig; diff --git a/src/Pyz/Shared/PriceUS/PriceConfig.php b/src/Pyz/Shared/PriceUS/PriceConfig.php index 460b96c721..a927eab955 100644 --- a/src/Pyz/Shared/PriceUS/PriceConfig.php +++ b/src/Pyz/Shared/PriceUS/PriceConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\PriceUS; use Spryker\Shared\Price\PriceConfig as SprykerPriceConfig; diff --git a/src/Pyz/Shared/Quote/QuoteConfig.php b/src/Pyz/Shared/Quote/QuoteConfig.php index 19e0069b7b..acad2265f5 100644 --- a/src/Pyz/Shared/Quote/QuoteConfig.php +++ b/src/Pyz/Shared/Quote/QuoteConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\Quote; use Spryker\Shared\Quote\QuoteConfig as SprykerQuoteConfig; diff --git a/src/Pyz/Shared/Scheduler/SchedulerConfig.php b/src/Pyz/Shared/Scheduler/SchedulerConfig.php index ced656b70d..276082abaf 100644 --- a/src/Pyz/Shared/Scheduler/SchedulerConfig.php +++ b/src/Pyz/Shared/Scheduler/SchedulerConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\Scheduler; use Spryker\Shared\Kernel\AbstractSharedConfig; diff --git a/src/Pyz/Shared/SearchElasticsearch/SearchElasticsearchConfig.php b/src/Pyz/Shared/SearchElasticsearch/SearchElasticsearchConfig.php index eee24ce3d1..20534a5e48 100644 --- a/src/Pyz/Shared/SearchElasticsearch/SearchElasticsearchConfig.php +++ b/src/Pyz/Shared/SearchElasticsearch/SearchElasticsearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\SearchElasticsearch; use Spryker\Shared\SearchElasticsearch\SearchElasticsearchConfig as SprykerSearchElasticsearchConfig; diff --git a/src/Pyz/Shared/Shipment/ShipmentConfig.php b/src/Pyz/Shared/Shipment/ShipmentConfig.php index ebc1880b3c..81d2830714 100644 --- a/src/Pyz/Shared/Shipment/ShipmentConfig.php +++ b/src/Pyz/Shared/Shipment/ShipmentConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Shared\Shipment; use Spryker\Shared\Shipment\ShipmentConfig as SprykerShipmentConfig; diff --git a/src/Pyz/Yves/AgentPage/AgentPageConfig.php b/src/Pyz/Yves/AgentPage/AgentPageConfig.php index 45d576f5e0..f5fcc9a1f7 100644 --- a/src/Pyz/Yves/AgentPage/AgentPageConfig.php +++ b/src/Pyz/Yves/AgentPage/AgentPageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\AgentPage; use SprykerShop\Yves\AgentPage\AgentPageConfig as SprykerAgentPageConfig; diff --git a/src/Pyz/Yves/AgentPage/AgentPageDependencyProvider.php b/src/Pyz/Yves/AgentPage/AgentPageDependencyProvider.php index 93176bfdfa..30170ecb69 100644 --- a/src/Pyz/Yves/AgentPage/AgentPageDependencyProvider.php +++ b/src/Pyz/Yves/AgentPage/AgentPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\AgentPage; use SprykerShop\Yves\AgentPage\AgentPageDependencyProvider as SprykerAgentPageDependencyProvider; diff --git a/src/Pyz/Yves/Application/ApplicationDependencyProvider.php b/src/Pyz/Yves/Application/ApplicationDependencyProvider.php index b1a88fd63b..eec4d937ad 100644 --- a/src/Pyz/Yves/Application/ApplicationDependencyProvider.php +++ b/src/Pyz/Yves/Application/ApplicationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Application; use Spryker\Yves\Application\ApplicationDependencyProvider as SprykerApplicationDependencyProvider; diff --git a/src/Pyz/Yves/CartPage/CartPageConfig.php b/src/Pyz/Yves/CartPage/CartPageConfig.php index 084344236c..ad833b7d1b 100644 --- a/src/Pyz/Yves/CartPage/CartPageConfig.php +++ b/src/Pyz/Yves/CartPage/CartPageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CartPage; use SprykerShop\Yves\CartPage\CartPageConfig as SprykerCartPageConfig; diff --git a/src/Pyz/Yves/CartPage/CartPageDependencyProvider.php b/src/Pyz/Yves/CartPage/CartPageDependencyProvider.php index f953313add..e6516f8891 100644 --- a/src/Pyz/Yves/CartPage/CartPageDependencyProvider.php +++ b/src/Pyz/Yves/CartPage/CartPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CartPage; use SprykerShop\Yves\CartPage\CartPageDependencyProvider as SprykerCartPageDependencyProvider; diff --git a/src/Pyz/Yves/CartPage/Controller/CartController.php b/src/Pyz/Yves/CartPage/Controller/CartController.php index 36a7d0ff4f..9e26805f71 100644 --- a/src/Pyz/Yves/CartPage/Controller/CartController.php +++ b/src/Pyz/Yves/CartPage/Controller/CartController.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CartPage\Controller; use SprykerShop\Yves\CartPage\Controller\CartController as SprykerCartController; @@ -28,7 +30,7 @@ class CartController extends SprykerCartController * * @return \Symfony\Component\HttpFoundation\RedirectResponse */ - public function addAction(Request $request, $sku): RedirectResponse + public function addAction(Request $request, $sku): RedirectResponse // phpcs:ignore { parent::addAction($request, $sku); @@ -41,7 +43,7 @@ public function addAction(Request $request, $sku): RedirectResponse * * @return \Symfony\Component\HttpFoundation\RedirectResponse */ - public function removeAction(Request $request, $sku): RedirectResponse + public function removeAction(Request $request, $sku): RedirectResponse // phpcs:ignore { parent::removeAction($request, $sku); diff --git a/src/Pyz/Yves/CartPage/Plugin/Twig/CartTwigPlugin.php b/src/Pyz/Yves/CartPage/Plugin/Twig/CartTwigPlugin.php index 473fc1e1b9..4ba45b0fa2 100644 --- a/src/Pyz/Yves/CartPage/Plugin/Twig/CartTwigPlugin.php +++ b/src/Pyz/Yves/CartPage/Plugin/Twig/CartTwigPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CartPage\Plugin\Twig; use Spryker\Service\Container\ContainerInterface; diff --git a/src/Pyz/Yves/CartPage/Plugin/Twig/QuoteTwigPlugin.php b/src/Pyz/Yves/CartPage/Plugin/Twig/QuoteTwigPlugin.php index 9ca2127723..f787b9154f 100644 --- a/src/Pyz/Yves/CartPage/Plugin/Twig/QuoteTwigPlugin.php +++ b/src/Pyz/Yves/CartPage/Plugin/Twig/QuoteTwigPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CartPage\Plugin\Twig; use Spryker\Service\Container\ContainerInterface; diff --git a/src/Pyz/Yves/CatalogPage/CatalogPageConfig.php b/src/Pyz/Yves/CatalogPage/CatalogPageConfig.php index 314f9b6c24..6aa460b850 100644 --- a/src/Pyz/Yves/CatalogPage/CatalogPageConfig.php +++ b/src/Pyz/Yves/CatalogPage/CatalogPageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CatalogPage; use SprykerShop\Yves\CatalogPage\CatalogPageConfig as SprykerCatalogPageConfig; diff --git a/src/Pyz/Yves/ChartWidget/ChartWidgetDependencyProvider.php b/src/Pyz/Yves/ChartWidget/ChartWidgetDependencyProvider.php index 0df321c758..c0f8222de1 100644 --- a/src/Pyz/Yves/ChartWidget/ChartWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ChartWidget/ChartWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ChartWidget; use Pyz\Yves\ExampleChart\Plugin\ExampleChartPlugin; diff --git a/src/Pyz/Yves/CheckoutPage/CheckoutPageConfig.php b/src/Pyz/Yves/CheckoutPage/CheckoutPageConfig.php index 765dbd1db1..21ed585dbd 100644 --- a/src/Pyz/Yves/CheckoutPage/CheckoutPageConfig.php +++ b/src/Pyz/Yves/CheckoutPage/CheckoutPageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CheckoutPage; use SprykerShop\Yves\CheckoutPage\CheckoutPageConfig as SprykerCheckoutPageConfig; diff --git a/src/Pyz/Yves/CheckoutPage/CheckoutPageDependencyProvider.php b/src/Pyz/Yves/CheckoutPage/CheckoutPageDependencyProvider.php index f12ea8cd23..cdecb314cb 100644 --- a/src/Pyz/Yves/CheckoutPage/CheckoutPageDependencyProvider.php +++ b/src/Pyz/Yves/CheckoutPage/CheckoutPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CheckoutPage; use Generated\Shared\Transfer\PaymentTransfer; @@ -83,7 +85,7 @@ protected function getCustomerStepSubForms(): array * * @return \Symfony\Component\Form\FormInterface */ - protected function getCustomerCheckoutForm($subForm, $blockPrefix): FormInterface + protected function getCustomerCheckoutForm(string $subForm, string $blockPrefix): FormInterface { return $this->getFormFactory()->createNamed( $blockPrefix, diff --git a/src/Pyz/Yves/CmsBlockWidget/CmsBlockWidgetDependencyProvider.php b/src/Pyz/Yves/CmsBlockWidget/CmsBlockWidgetDependencyProvider.php index c355e20e5c..c2f697b3ba 100644 --- a/src/Pyz/Yves/CmsBlockWidget/CmsBlockWidgetDependencyProvider.php +++ b/src/Pyz/Yves/CmsBlockWidget/CmsBlockWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CmsBlockWidget; use SprykerShop\Yves\CmsBlockWidget\CmsBlockWidgetDependencyProvider as SprykerCmsBlockWidgetDependencyProvider; diff --git a/src/Pyz/Yves/CmsContentWidget/CmsContentWidgetDependencyProvider.php b/src/Pyz/Yves/CmsContentWidget/CmsContentWidgetDependencyProvider.php index 7383ac8ea2..f140f2ba04 100644 --- a/src/Pyz/Yves/CmsContentWidget/CmsContentWidgetDependencyProvider.php +++ b/src/Pyz/Yves/CmsContentWidget/CmsContentWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CmsContentWidget; use Pyz\Shared\CmsContentWidgetProductConnector\ContentWidgetConfigurationProvider\CmsProductGroupContentWidgetConfigurationProvider; diff --git a/src/Pyz/Yves/CmsContentWidgetProductConnector/CmsContentWidgetProductConnectorConfig.php b/src/Pyz/Yves/CmsContentWidgetProductConnector/CmsContentWidgetProductConnectorConfig.php index 86152a9136..4da82ded16 100644 --- a/src/Pyz/Yves/CmsContentWidgetProductConnector/CmsContentWidgetProductConnectorConfig.php +++ b/src/Pyz/Yves/CmsContentWidgetProductConnector/CmsContentWidgetProductConnectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CmsContentWidgetProductConnector; use Spryker\Yves\CmsContentWidgetProductConnector\CmsContentWidgetProductConnectorConfig as SprykerCmsContentWidgetProductConnectorConfig; diff --git a/src/Pyz/Yves/ConfigurableBundleWidget/ConfigurableBundleWidgetConfig.php b/src/Pyz/Yves/ConfigurableBundleWidget/ConfigurableBundleWidgetConfig.php index b7144be530..99c4d2ed85 100644 --- a/src/Pyz/Yves/ConfigurableBundleWidget/ConfigurableBundleWidgetConfig.php +++ b/src/Pyz/Yves/ConfigurableBundleWidget/ConfigurableBundleWidgetConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ConfigurableBundleWidget; use SprykerShop\Yves\ConfigurableBundleWidget\ConfigurableBundleWidgetConfig as SprykerShopConfigurableBundleWidgetConfig; diff --git a/src/Pyz/Yves/Console/ConsoleDependencyProvider.php b/src/Pyz/Yves/Console/ConsoleDependencyProvider.php index 653a96c1de..5be8be8907 100644 --- a/src/Pyz/Yves/Console/ConsoleDependencyProvider.php +++ b/src/Pyz/Yves/Console/ConsoleDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Console; use Spryker\Yves\Console\ConsoleDependencyProvider as SprykerConsoleDependencyProvider; @@ -21,7 +23,7 @@ class ConsoleDependencyProvider extends SprykerConsoleDependencyProvider * * @return array<\Symfony\Component\Console\Command\Command> */ - protected function getConsoleCommands(Container $container): array + protected function getConsoleCommands(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new RouterDebugYvesConsole(), @@ -34,7 +36,7 @@ protected function getConsoleCommands(Container $container): array * * @return array<\Spryker\Shared\ApplicationExtension\Dependency\Plugin\ApplicationPluginInterface> */ - protected function getApplicationPlugins(Container $container): array + protected function getApplicationPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new RouterApplicationPlugin(), @@ -46,7 +48,7 @@ protected function getApplicationPlugins(Container $container): array * * @return array<\Spryker\Yves\Monitoring\Plugin\Console\MonitoringConsolePlugin> */ - protected function getEventSubscriber(Container $container): array + protected function getEventSubscriber(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new MonitoringConsolePlugin(), diff --git a/src/Pyz/Yves/ContentBannerWidget/ContentBannerWidgetFactory.php b/src/Pyz/Yves/ContentBannerWidget/ContentBannerWidgetFactory.php index 464b5fa1a3..687b40cb64 100644 --- a/src/Pyz/Yves/ContentBannerWidget/ContentBannerWidgetFactory.php +++ b/src/Pyz/Yves/ContentBannerWidget/ContentBannerWidgetFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentBannerWidget; use Pyz\Yves\ContentBannerWidget\Twig\ContentBannerTwigFunctionProvider; diff --git a/src/Pyz/Yves/ContentBannerWidget/Twig/ContentBannerTwigFunctionProvider.php b/src/Pyz/Yves/ContentBannerWidget/Twig/ContentBannerTwigFunctionProvider.php index 3f5c744cd0..f1b2a799ae 100644 --- a/src/Pyz/Yves/ContentBannerWidget/Twig/ContentBannerTwigFunctionProvider.php +++ b/src/Pyz/Yves/ContentBannerWidget/Twig/ContentBannerTwigFunctionProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentBannerWidget\Twig; use SprykerShop\Yves\ContentBannerWidget\Twig\ContentBannerTwigFunctionProvider as SprykerShopContentBannerTwigFunctionProvider; diff --git a/src/Pyz/Yves/ContentNavigationWidget/ContentNavigationWidgetConfig.php b/src/Pyz/Yves/ContentNavigationWidget/ContentNavigationWidgetConfig.php index 0d37ab490b..bbe2df078e 100644 --- a/src/Pyz/Yves/ContentNavigationWidget/ContentNavigationWidgetConfig.php +++ b/src/Pyz/Yves/ContentNavigationWidget/ContentNavigationWidgetConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentNavigationWidget; use SprykerShop\Yves\ContentNavigationWidget\ContentNavigationWidgetConfig as SprykerContentNavigationWidget; diff --git a/src/Pyz/Yves/ContentProductSetWidget/ContentProductSetWidgetFactory.php b/src/Pyz/Yves/ContentProductSetWidget/ContentProductSetWidgetFactory.php index fdc15afbda..b0610a833a 100644 --- a/src/Pyz/Yves/ContentProductSetWidget/ContentProductSetWidgetFactory.php +++ b/src/Pyz/Yves/ContentProductSetWidget/ContentProductSetWidgetFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentProductSetWidget; use Pyz\Yves\ContentProductSetWidget\Twig\ContentProductSetTwigFunctionProvider; diff --git a/src/Pyz/Yves/ContentProductSetWidget/Twig/ContentProductSetTwigFunctionProvider.php b/src/Pyz/Yves/ContentProductSetWidget/Twig/ContentProductSetTwigFunctionProvider.php index 8c755219a9..9aa2f38a52 100644 --- a/src/Pyz/Yves/ContentProductSetWidget/Twig/ContentProductSetTwigFunctionProvider.php +++ b/src/Pyz/Yves/ContentProductSetWidget/Twig/ContentProductSetTwigFunctionProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentProductSetWidget\Twig; use SprykerShop\Yves\ContentProductSetWidget\Twig\ContentProductSetTwigFunctionProvider as SprykerShopContentProductSetTwigFunctionProvider; diff --git a/src/Pyz/Yves/ContentProductWidget/ContentProductWidgetFactory.php b/src/Pyz/Yves/ContentProductWidget/ContentProductWidgetFactory.php index a7be22dd6b..6b79764653 100644 --- a/src/Pyz/Yves/ContentProductWidget/ContentProductWidgetFactory.php +++ b/src/Pyz/Yves/ContentProductWidget/ContentProductWidgetFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentProductWidget; use Pyz\Yves\ContentProductWidget\Twig\ContentProductAbstractListTwigFunctionProvider; diff --git a/src/Pyz/Yves/ContentProductWidget/Twig/ContentProductAbstractListTwigFunctionProvider.php b/src/Pyz/Yves/ContentProductWidget/Twig/ContentProductAbstractListTwigFunctionProvider.php index 171d83660b..db9e2090f7 100644 --- a/src/Pyz/Yves/ContentProductWidget/Twig/ContentProductAbstractListTwigFunctionProvider.php +++ b/src/Pyz/Yves/ContentProductWidget/Twig/ContentProductAbstractListTwigFunctionProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ContentProductWidget\Twig; use SprykerShop\Yves\ContentProductWidget\Twig\ContentProductAbstractListTwigFunctionProvider as SprykerShopContentProductAbstractListTwigFunctionProvider; diff --git a/src/Pyz/Yves/CustomerPage/CustomerPageConfig.php b/src/Pyz/Yves/CustomerPage/CustomerPageConfig.php index 9659bb35ec..0675e24b10 100644 --- a/src/Pyz/Yves/CustomerPage/CustomerPageConfig.php +++ b/src/Pyz/Yves/CustomerPage/CustomerPageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CustomerPage; use SprykerShop\Yves\CustomerPage\CustomerPageConfig as SprykerCustomerPageConfig; diff --git a/src/Pyz/Yves/CustomerPage/CustomerPageDependencyProvider.php b/src/Pyz/Yves/CustomerPage/CustomerPageDependencyProvider.php index 5e4451b353..193ee07c9a 100644 --- a/src/Pyz/Yves/CustomerPage/CustomerPageDependencyProvider.php +++ b/src/Pyz/Yves/CustomerPage/CustomerPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CustomerPage; use SprykerShop\Yves\AgentPage\Plugin\Security\UpdateAgentTokenAfterCustomerAuthenticationSuccessPlugin; diff --git a/src/Pyz/Yves/CustomerReorderWidget/CustomerReorderWidgetDependencyProvider.php b/src/Pyz/Yves/CustomerReorderWidget/CustomerReorderWidgetDependencyProvider.php index 63e383a356..c183195cc8 100644 --- a/src/Pyz/Yves/CustomerReorderWidget/CustomerReorderWidgetDependencyProvider.php +++ b/src/Pyz/Yves/CustomerReorderWidget/CustomerReorderWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\CustomerReorderWidget; use SprykerShop\Yves\CustomerReorderWidget\CustomerReorderWidgetDependencyProvider as SprykerCustomerReorderWidgetDependencyProvider; diff --git a/src/Pyz/Yves/ErrorPage/ErrorPageDependencyProvider.php b/src/Pyz/Yves/ErrorPage/ErrorPageDependencyProvider.php index 407741f7a4..b804b769ee 100644 --- a/src/Pyz/Yves/ErrorPage/ErrorPageDependencyProvider.php +++ b/src/Pyz/Yves/ErrorPage/ErrorPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ErrorPage; use SprykerShop\Yves\ErrorPage\ErrorPageDependencyProvider as SprykerErrorPageDependencyProvider; diff --git a/src/Pyz/Yves/EventDispatcher/EventDispatcherDependencyProvider.php b/src/Pyz/Yves/EventDispatcher/EventDispatcherDependencyProvider.php index 8b8688da40..b1fab39456 100644 --- a/src/Pyz/Yves/EventDispatcher/EventDispatcherDependencyProvider.php +++ b/src/Pyz/Yves/EventDispatcher/EventDispatcherDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\EventDispatcher; use Spryker\Shared\Http\Plugin\EventDispatcher\ResponseListenerEventDispatcherPlugin; diff --git a/src/Pyz/Yves/ExampleChart/Plugin/ExampleChartPlugin.php b/src/Pyz/Yves/ExampleChart/Plugin/ExampleChartPlugin.php index 920c76de42..1d356e2f49 100644 --- a/src/Pyz/Yves/ExampleChart/Plugin/ExampleChartPlugin.php +++ b/src/Pyz/Yves/ExampleChart/Plugin/ExampleChartPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ExampleChart\Plugin; use Generated\Shared\Transfer\ChartDataTraceTransfer; @@ -34,7 +36,7 @@ public function getName(): string * * @return \Generated\Shared\Transfer\ChartDataTransfer */ - public function getChartData($dataIdentifier = null): ChartDataTransfer + public function getChartData($dataIdentifier = null): ChartDataTransfer // phpcs:ignore { $data = new ChartDataTransfer(); diff --git a/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php b/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php index 40dc02c01e..812c623a24 100644 --- a/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php +++ b/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ExampleProductSalePage; use Spryker\Yves\Kernel\AbstractBundleDependencyProvider; @@ -98,7 +100,7 @@ protected function addUrlStorageClient(Container $container): Container * * @return \Spryker\Yves\Kernel\Container */ - protected function addClientStore($container): Container + protected function addClientStore(Container $container): Container { $container->set(static::CLIENT_STORE, function (Container $container) { return $container->getLocator()->store()->client(); @@ -126,7 +128,7 @@ protected function addCatalogClient(Container $container): Container * * @return \Spryker\Yves\Kernel\Container */ - protected function addProductSalePageWidgetPlugins($container): Container + protected function addProductSalePageWidgetPlugins(Container $container): Container { $container->set(static::PLUGIN_PRODUCT_SALE_PAGE_WIDGETS, function () { return $this->getProductSalePageWidgetPlugins(); diff --git a/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageFactory.php b/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageFactory.php index d659d891c3..d8a8b61ab4 100644 --- a/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageFactory.php +++ b/src/Pyz/Yves/ExampleProductSalePage/ExampleProductSalePageFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ExampleProductSalePage; use Generated\Shared\Transfer\StoreTransfer; diff --git a/src/Pyz/Yves/ExampleProductSalePage/Plugin/Router/ExampleProductSaleRouteProviderPlugin.php b/src/Pyz/Yves/ExampleProductSalePage/Plugin/Router/ExampleProductSaleRouteProviderPlugin.php index daba3d981a..feee5832e5 100644 --- a/src/Pyz/Yves/ExampleProductSalePage/Plugin/Router/ExampleProductSaleRouteProviderPlugin.php +++ b/src/Pyz/Yves/ExampleProductSalePage/Plugin/Router/ExampleProductSaleRouteProviderPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ExampleProductSalePage\Plugin\Router; use Spryker\Yves\Router\Plugin\RouteProvider\AbstractRouteProviderPlugin; diff --git a/src/Pyz/Yves/Form/FormDependencyProvider.php b/src/Pyz/Yves/Form/FormDependencyProvider.php index 86b6b805e1..47e5f7baa9 100644 --- a/src/Pyz/Yves/Form/FormDependencyProvider.php +++ b/src/Pyz/Yves/Form/FormDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Form; use Spryker\Yves\Form\FormDependencyProvider as SprykerFormDependencyProvider; diff --git a/src/Pyz/Yves/HealthCheck/HealthCheckDependencyProvider.php b/src/Pyz/Yves/HealthCheck/HealthCheckDependencyProvider.php index a0d702e478..7f6d4dc9ac 100644 --- a/src/Pyz/Yves/HealthCheck/HealthCheckDependencyProvider.php +++ b/src/Pyz/Yves/HealthCheck/HealthCheckDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\HealthCheck; use Spryker\Yves\HealthCheck\HealthCheckDependencyProvider as SprykerHealthCheckDependencyProvider; diff --git a/src/Pyz/Yves/Http/HttpDependencyProvider.php b/src/Pyz/Yves/Http/HttpDependencyProvider.php index 731a2eef87..ca6e379d5f 100644 --- a/src/Pyz/Yves/Http/HttpDependencyProvider.php +++ b/src/Pyz/Yves/Http/HttpDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Http; use Spryker\Yves\Http\HttpDependencyProvider as SprykerHttpDependencyProvider; diff --git a/src/Pyz/Yves/Log/LogDependencyProvider.php b/src/Pyz/Yves/Log/LogDependencyProvider.php index 60647b944a..0e0666df16 100644 --- a/src/Pyz/Yves/Log/LogDependencyProvider.php +++ b/src/Pyz/Yves/Log/LogDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Log; use Spryker\Yves\Customer\Plugin\Log\CurrentCustomerDataRequestProcessorPlugin; diff --git a/src/Pyz/Yves/PaymentAppWidget/PaymentAppWidgetConfig.php b/src/Pyz/Yves/PaymentAppWidget/PaymentAppWidgetConfig.php index e25238f9b9..8c2259d167 100644 --- a/src/Pyz/Yves/PaymentAppWidget/PaymentAppWidgetConfig.php +++ b/src/Pyz/Yves/PaymentAppWidget/PaymentAppWidgetConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\PaymentAppWidget; use Generated\Shared\Transfer\QuoteTransfer; diff --git a/src/Pyz/Yves/ProductConfigurationCartWidget/ProductConfigurationCartWidgetDependencyProvider.php b/src/Pyz/Yves/ProductConfigurationCartWidget/ProductConfigurationCartWidgetDependencyProvider.php index 287995c4d6..2962cea6a8 100644 --- a/src/Pyz/Yves/ProductConfigurationCartWidget/ProductConfigurationCartWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ProductConfigurationCartWidget/ProductConfigurationCartWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductConfigurationCartWidget; use SprykerShop\Yves\DateTimeConfiguratorPageExample\Plugin\ProductConfigurationCartWidget\ExampleDateTimeCartProductConfigurationRenderStrategyPlugin; diff --git a/src/Pyz/Yves/ProductConfigurationWidget/ProductConfigurationWidgetDependencyProvider.php b/src/Pyz/Yves/ProductConfigurationWidget/ProductConfigurationWidgetDependencyProvider.php index cb8c1e64da..c33feea705 100644 --- a/src/Pyz/Yves/ProductConfigurationWidget/ProductConfigurationWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ProductConfigurationWidget/ProductConfigurationWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductConfigurationWidget; use SprykerShop\Yves\DateTimeConfiguratorPageExample\Plugin\ProductConfigurationWidget\ExampleDateTimeProductConfigurationRenderStrategyPlugin; diff --git a/src/Pyz/Yves/ProductConfigurationWishlistWidget/ProductConfigurationWishlistWidgetDependencyProvider.php b/src/Pyz/Yves/ProductConfigurationWishlistWidget/ProductConfigurationWishlistWidgetDependencyProvider.php index 7454b8d3e7..739563e7ea 100644 --- a/src/Pyz/Yves/ProductConfigurationWishlistWidget/ProductConfigurationWishlistWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ProductConfigurationWishlistWidget/ProductConfigurationWishlistWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductConfigurationWishlistWidget; use SprykerShop\Yves\DateTimeConfiguratorPageExample\Plugin\ProductConfigurationWishlistWidget\ExampleDateTimeWishlistItemProductConfigurationRenderStrategyPlugin; diff --git a/src/Pyz/Yves/ProductConfiguratorGatewayPage/ProductConfiguratorGatewayPageDependencyProvider.php b/src/Pyz/Yves/ProductConfiguratorGatewayPage/ProductConfiguratorGatewayPageDependencyProvider.php index e39406ffd2..96c7cb9004 100644 --- a/src/Pyz/Yves/ProductConfiguratorGatewayPage/ProductConfiguratorGatewayPageDependencyProvider.php +++ b/src/Pyz/Yves/ProductConfiguratorGatewayPage/ProductConfiguratorGatewayPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductConfiguratorGatewayPage; use SprykerShop\Yves\ProductConfigurationCartWidget\Plugin\ProductConfiguratorGatewayPage\CartPageProductConfiguratorRequestDataFormExpanderStrategyPlugin; diff --git a/src/Pyz/Yves/ProductDetailPage/Controller/ProductController.php b/src/Pyz/Yves/ProductDetailPage/Controller/ProductController.php index 2421467305..530978800c 100644 --- a/src/Pyz/Yves/ProductDetailPage/Controller/ProductController.php +++ b/src/Pyz/Yves/ProductDetailPage/Controller/ProductController.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductDetailPage\Controller; use Generated\Shared\Transfer\ItemTransfer; diff --git a/src/Pyz/Yves/ProductGroupWidget/ProductGroupWidgetDependencyProvider.php b/src/Pyz/Yves/ProductGroupWidget/ProductGroupWidgetDependencyProvider.php index 2433a72c7d..9436e59a96 100644 --- a/src/Pyz/Yves/ProductGroupWidget/ProductGroupWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ProductGroupWidget/ProductGroupWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductGroupWidget; use SprykerShop\Yves\CartPage\Plugin\ProductGroupWidget\AddToCartUrlProductViewExpanderPlugin; diff --git a/src/Pyz/Yves/ProductRelationWidget/Widget/UpSellingProductsWidget.php b/src/Pyz/Yves/ProductRelationWidget/Widget/UpSellingProductsWidget.php index d928d10847..ec294cf51f 100644 --- a/src/Pyz/Yves/ProductRelationWidget/Widget/UpSellingProductsWidget.php +++ b/src/Pyz/Yves/ProductRelationWidget/Widget/UpSellingProductsWidget.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductRelationWidget\Widget; use SprykerShop\Yves\ProductRelationWidget\Widget\UpSellingProductsWidget as SprykerUpSellingProductsWidget; diff --git a/src/Pyz/Yves/ProductReviewWidget/Controller/CreateController.php b/src/Pyz/Yves/ProductReviewWidget/Controller/CreateController.php index c049e527c8..d2034a1684 100644 --- a/src/Pyz/Yves/ProductReviewWidget/Controller/CreateController.php +++ b/src/Pyz/Yves/ProductReviewWidget/Controller/CreateController.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget\Controller; use SprykerShop\Yves\ProductReviewWidget\Controller\CreateController as SprykerCreateController; diff --git a/src/Pyz/Yves/ProductReviewWidget/Controller/SubmitController.php b/src/Pyz/Yves/ProductReviewWidget/Controller/SubmitController.php index 018cbf3a19..b9519a4fc9 100644 --- a/src/Pyz/Yves/ProductReviewWidget/Controller/SubmitController.php +++ b/src/Pyz/Yves/ProductReviewWidget/Controller/SubmitController.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget\Controller; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/src/Pyz/Yves/ProductReviewWidget/Form/ProductReviewForm.php b/src/Pyz/Yves/ProductReviewWidget/Form/ProductReviewForm.php index 43bcb01193..a98e0d2471 100644 --- a/src/Pyz/Yves/ProductReviewWidget/Form/ProductReviewForm.php +++ b/src/Pyz/Yves/ProductReviewWidget/Form/ProductReviewForm.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget\Form; use Generated\Shared\Transfer\ProductReviewRequestTransfer; @@ -80,7 +82,7 @@ public function getBlockPrefix(): string * * @return void */ - public function buildForm(FormBuilderInterface $builder, array $options): void + public function buildForm(FormBuilderInterface $builder, array $options): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $this ->addSummaryField($builder) diff --git a/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetConfig.php b/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetConfig.php index cb61d91eb0..af918b31c8 100644 --- a/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetConfig.php +++ b/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget; use SprykerShop\Yves\ProductReviewWidget\ProductReviewWidgetConfig as SprykerProductReviewWidgetConfig; diff --git a/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetDependencyProvider.php b/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetDependencyProvider.php index 4c777cc75d..2412f34f27 100644 --- a/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget; use Spryker\Yves\Kernel\Container; diff --git a/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetFactory.php b/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetFactory.php index 9b905ff27b..ea38772ace 100644 --- a/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetFactory.php +++ b/src/Pyz/Yves/ProductReviewWidget/ProductReviewWidgetFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget; use Pyz\Yves\ProductReviewWidget\Form\ProductReviewForm; @@ -19,16 +21,15 @@ class ProductReviewWidgetFactory extends SprykerShopProductReviewWidgetFactory * * @return \Symfony\Component\Form\FormInterface */ - public function createProductReviewForm($idProductAbstract): FormInterface + public function createProductReviewForm($idProductAbstract): FormInterface // phpcs:ignore { $dataProvider = $this->createProductReviewFormDataProvider(); - $form = $this->getFormFactory()->create( + + return $this->getFormFactory()->create( ProductReviewForm::class, $dataProvider->getData($idProductAbstract), $dataProvider->getOptions(), ); - - return $form; } /** diff --git a/src/Pyz/Yves/ProductReviewWidget/Widget/ProductDetailPageReviewWidget.php b/src/Pyz/Yves/ProductReviewWidget/Widget/ProductDetailPageReviewWidget.php index 308c6ca37f..3b7cdd1bb9 100644 --- a/src/Pyz/Yves/ProductReviewWidget/Widget/ProductDetailPageReviewWidget.php +++ b/src/Pyz/Yves/ProductReviewWidget/Widget/ProductDetailPageReviewWidget.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductReviewWidget\Widget; use Generated\Shared\Transfer\ProductReviewSearchRequestTransfer; diff --git a/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetDependencyProvider.php b/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetDependencyProvider.php index e94de3d692..ac2de66cd1 100644 --- a/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetDependencyProvider.php +++ b/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductSetWidget; use Spryker\Yves\Kernel\Container; diff --git a/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetFactory.php b/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetFactory.php index cd6c92ff84..7883402de7 100644 --- a/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetFactory.php +++ b/src/Pyz/Yves/ProductSetWidget/ProductSetWidgetFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductSetWidget; use Spryker\Client\ProductSetStorage\ProductSetStorageClientInterface; diff --git a/src/Pyz/Yves/ProductSetWidget/Widget/ProductSetIdsWidget.php b/src/Pyz/Yves/ProductSetWidget/Widget/ProductSetIdsWidget.php index d19fd3321b..ddd2883f36 100644 --- a/src/Pyz/Yves/ProductSetWidget/Widget/ProductSetIdsWidget.php +++ b/src/Pyz/Yves/ProductSetWidget/Widget/ProductSetIdsWidget.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ProductSetWidget\Widget; use Generated\Shared\Transfer\ProductSetDataStorageTransfer; diff --git a/src/Pyz/Yves/Router/RouterConfig.php b/src/Pyz/Yves/Router/RouterConfig.php index cd770789c7..986088bdc9 100644 --- a/src/Pyz/Yves/Router/RouterConfig.php +++ b/src/Pyz/Yves/Router/RouterConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Router; use Spryker\Client\Kernel\Container; diff --git a/src/Pyz/Yves/Router/RouterDependencyProvider.php b/src/Pyz/Yves/Router/RouterDependencyProvider.php index 8222f1cac3..2db4d7b208 100644 --- a/src/Pyz/Yves/Router/RouterDependencyProvider.php +++ b/src/Pyz/Yves/Router/RouterDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Router; use Pyz\Yves\ExampleProductSalePage\Plugin\Router\ExampleProductSaleRouteProviderPlugin; diff --git a/src/Pyz/Yves/SalesProductConfigurationWidget/SalesProductConfigurationWidgetDependencyProvider.php b/src/Pyz/Yves/SalesProductConfigurationWidget/SalesProductConfigurationWidgetDependencyProvider.php index 34d5f59ecc..2658aaf84e 100644 --- a/src/Pyz/Yves/SalesProductConfigurationWidget/SalesProductConfigurationWidgetDependencyProvider.php +++ b/src/Pyz/Yves/SalesProductConfigurationWidget/SalesProductConfigurationWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\SalesProductConfigurationWidget; use SprykerShop\Yves\DateTimeConfiguratorPageExample\Plugin\SalesProductConfigurationWidget\ExampleDateTimeSalesProductConfigurationRenderStrategyPlugin; diff --git a/src/Pyz/Yves/SalesReturnPage/SalesReturnPageDependencyProvider.php b/src/Pyz/Yves/SalesReturnPage/SalesReturnPageDependencyProvider.php index f1d4427aab..67f5dfc280 100644 --- a/src/Pyz/Yves/SalesReturnPage/SalesReturnPageDependencyProvider.php +++ b/src/Pyz/Yves/SalesReturnPage/SalesReturnPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\SalesReturnPage; use SprykerShop\Yves\SalesProductBundleWidget\Plugin\SalesReturnPage\ProductBundleReturnCreateFormHandlerPlugin; diff --git a/src/Pyz/Yves/Security/SecurityDependencyProvider.php b/src/Pyz/Yves/Security/SecurityDependencyProvider.php index 069d96b8ce..b7b6f10333 100644 --- a/src/Pyz/Yves/Security/SecurityDependencyProvider.php +++ b/src/Pyz/Yves/Security/SecurityDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Security; use Spryker\Yves\Security\Plugin\Security\RememberMeSecurityPlugin; diff --git a/src/Pyz/Yves/SecurityBlockerPage/SecurityBlockerPageConfig.php b/src/Pyz/Yves/SecurityBlockerPage/SecurityBlockerPageConfig.php index e0bd49f4af..40ad1941d1 100644 --- a/src/Pyz/Yves/SecurityBlockerPage/SecurityBlockerPageConfig.php +++ b/src/Pyz/Yves/SecurityBlockerPage/SecurityBlockerPageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\SecurityBlockerPage; use SprykerShop\Yves\SecurityBlockerPage\SecurityBlockerPageConfig as SprykerSecurityBlockerPageConfig; diff --git a/src/Pyz/Yves/Session/SessionDependencyProvider.php b/src/Pyz/Yves/Session/SessionDependencyProvider.php index db08ab6704..02fe9a99e7 100644 --- a/src/Pyz/Yves/Session/SessionDependencyProvider.php +++ b/src/Pyz/Yves/Session/SessionDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Session; use Spryker\Yves\Session\SessionDependencyProvider as SprykerSessionDependencyProvider; diff --git a/src/Pyz/Yves/SessionAgentValidation/SessionAgentValidationDependencyProvider.php b/src/Pyz/Yves/SessionAgentValidation/SessionAgentValidationDependencyProvider.php index 68873c8a05..2baceec893 100644 --- a/src/Pyz/Yves/SessionAgentValidation/SessionAgentValidationDependencyProvider.php +++ b/src/Pyz/Yves/SessionAgentValidation/SessionAgentValidationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\SessionAgentValidation; use Spryker\Yves\SessionRedis\Plugin\SessionAgentValidation\SessionRedisSessionAgentSaverPlugin; diff --git a/src/Pyz/Yves/SessionCustomerValidationPage/SessionCustomerValidationPageDependencyProvider.php b/src/Pyz/Yves/SessionCustomerValidationPage/SessionCustomerValidationPageDependencyProvider.php index 41223316df..210c558c45 100644 --- a/src/Pyz/Yves/SessionCustomerValidationPage/SessionCustomerValidationPageDependencyProvider.php +++ b/src/Pyz/Yves/SessionCustomerValidationPage/SessionCustomerValidationPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\SessionCustomerValidationPage; use Spryker\Yves\SessionRedis\Plugin\SessionCustomerValidationPage\RedisCustomerSessionSaverPlugin; diff --git a/src/Pyz/Yves/ShopApplication/ShopApplicationDependencyProvider.php b/src/Pyz/Yves/ShopApplication/ShopApplicationDependencyProvider.php index 230c005eac..6f0f9094bb 100644 --- a/src/Pyz/Yves/ShopApplication/ShopApplicationDependencyProvider.php +++ b/src/Pyz/Yves/ShopApplication/ShopApplicationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ShopApplication; use Pyz\Yves\ProductRelationWidget\Widget\UpSellingProductsWidget; diff --git a/src/Pyz/Yves/ShopApplication/YvesBootstrap.php b/src/Pyz/Yves/ShopApplication/YvesBootstrap.php index 1ffaa0d8e1..e872c17fbc 100644 --- a/src/Pyz/Yves/ShopApplication/YvesBootstrap.php +++ b/src/Pyz/Yves/ShopApplication/YvesBootstrap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ShopApplication; use SprykerShop\Yves\ShopApplication\Bootstrap\YvesBootstrap as SprykerYvesBootstrap; diff --git a/src/Pyz/Yves/ShopCmsSlot/ShopCmsSlotDependencyProvider.php b/src/Pyz/Yves/ShopCmsSlot/ShopCmsSlotDependencyProvider.php index ba0174026e..05254a7336 100644 --- a/src/Pyz/Yves/ShopCmsSlot/ShopCmsSlotDependencyProvider.php +++ b/src/Pyz/Yves/ShopCmsSlot/ShopCmsSlotDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ShopCmsSlot; use Spryker\Shared\CmsSlotBlock\CmsSlotBlockConfig; diff --git a/src/Pyz/Yves/ShopPermission/ShopPermissionDependencyProvider.php b/src/Pyz/Yves/ShopPermission/ShopPermissionDependencyProvider.php index 49b9d44cb8..15aa4a181f 100644 --- a/src/Pyz/Yves/ShopPermission/ShopPermissionDependencyProvider.php +++ b/src/Pyz/Yves/ShopPermission/ShopPermissionDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\ShopPermission; use SprykerShop\Yves\ShopPermission\Plugin\Twig\PermissionTwigExtensionPlugin; diff --git a/src/Pyz/Yves/StorageRouter/StorageRouterConfig.php b/src/Pyz/Yves/StorageRouter/StorageRouterConfig.php index ac01a1a607..df9651b3fd 100644 --- a/src/Pyz/Yves/StorageRouter/StorageRouterConfig.php +++ b/src/Pyz/Yves/StorageRouter/StorageRouterConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\StorageRouter; use Spryker\Client\Kernel\Container; diff --git a/src/Pyz/Yves/StorageRouter/StorageRouterDependencyProvider.php b/src/Pyz/Yves/StorageRouter/StorageRouterDependencyProvider.php index e6e79d8f3f..d2996a325e 100644 --- a/src/Pyz/Yves/StorageRouter/StorageRouterDependencyProvider.php +++ b/src/Pyz/Yves/StorageRouter/StorageRouterDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\StorageRouter; use SprykerShop\Yves\CatalogPage\Plugin\StorageRouter\CatalogPageResourceCreatorPlugin; diff --git a/src/Pyz/Yves/TabsWidget/TabsWidgetDependencyProvider.php b/src/Pyz/Yves/TabsWidget/TabsWidgetDependencyProvider.php index 07ff653cf6..0698e0c423 100644 --- a/src/Pyz/Yves/TabsWidget/TabsWidgetDependencyProvider.php +++ b/src/Pyz/Yves/TabsWidget/TabsWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\TabsWidget; use SprykerShop\Yves\CatalogPage\Plugin\FullTextSearchProductsTabPlugin; diff --git a/src/Pyz/Yves/Twig/TwigDependencyProvider.php b/src/Pyz/Yves/Twig/TwigDependencyProvider.php index 4d0c8bc8b2..da0afcc967 100644 --- a/src/Pyz/Yves/Twig/TwigDependencyProvider.php +++ b/src/Pyz/Yves/Twig/TwigDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Twig; use Pyz\Yves\CartPage\Plugin\Twig\CartTwigPlugin; diff --git a/src/Pyz/Yves/Validator/ValidatorDependencyProvider.php b/src/Pyz/Yves/Validator/ValidatorDependencyProvider.php index a20a4478f8..2a43f41e7c 100644 --- a/src/Pyz/Yves/Validator/ValidatorDependencyProvider.php +++ b/src/Pyz/Yves/Validator/ValidatorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\Validator; use Spryker\Yves\Security\Plugin\Validator\YvesUserPasswordValidatorConstraintPlugin; diff --git a/src/Pyz/Yves/WebProfilerWidget/WebProfilerWidgetDependencyProvider.php b/src/Pyz/Yves/WebProfilerWidget/WebProfilerWidgetDependencyProvider.php index 12580b6e66..11e303106c 100644 --- a/src/Pyz/Yves/WebProfilerWidget/WebProfilerWidgetDependencyProvider.php +++ b/src/Pyz/Yves/WebProfilerWidget/WebProfilerWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\WebProfilerWidget; use Spryker\Yves\Profiler\Plugin\WebProfiler\WebProfilerProfilerDataCollectorPlugin; diff --git a/src/Pyz/Yves/WishlistPage/Controller/WishlistController.php b/src/Pyz/Yves/WishlistPage/Controller/WishlistController.php index 0741ee074f..9b1212befe 100644 --- a/src/Pyz/Yves/WishlistPage/Controller/WishlistController.php +++ b/src/Pyz/Yves/WishlistPage/Controller/WishlistController.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\WishlistPage\Controller; use Generated\Shared\Transfer\WishlistResponseTransfer; diff --git a/src/Pyz/Yves/WishlistPage/WishlistPageDependencyProvider.php b/src/Pyz/Yves/WishlistPage/WishlistPageDependencyProvider.php index 787a02f992..37008afd28 100644 --- a/src/Pyz/Yves/WishlistPage/WishlistPageDependencyProvider.php +++ b/src/Pyz/Yves/WishlistPage/WishlistPageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Yves\WishlistPage; use Spryker\Client\AvailabilityStorage\Plugin\ProductViewAvailabilityStorageExpanderPlugin; diff --git a/src/Pyz/Zed/Acl/AclConfig.php b/src/Pyz/Zed/Acl/AclConfig.php index 0ef0995516..8d43835cf7 100644 --- a/src/Pyz/Zed/Acl/AclConfig.php +++ b/src/Pyz/Zed/Acl/AclConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Acl; use Spryker\Shared\Acl\AclConstants; diff --git a/src/Pyz/Zed/Application/ApplicationDependencyProvider.php b/src/Pyz/Zed/Application/ApplicationDependencyProvider.php index 6111d6a919..aa745a505b 100644 --- a/src/Pyz/Zed/Application/ApplicationDependencyProvider.php +++ b/src/Pyz/Zed/Application/ApplicationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Application; use Spryker\Zed\Application\ApplicationDependencyProvider as SprykerApplicationDependencyProvider; diff --git a/src/Pyz/Zed/Application/Communication/ZedBootstrap.php b/src/Pyz/Zed/Application/Communication/ZedBootstrap.php index adb419ae53..1c10b838d4 100644 --- a/src/Pyz/Zed/Application/Communication/ZedBootstrap.php +++ b/src/Pyz/Zed/Application/Communication/ZedBootstrap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Application\Communication; use Spryker\Zed\Application\Communication\Bootstrap\ZedBootstrap as SprykerZedBootstrap; diff --git a/src/Pyz/Zed/AuthRestApi/AuthRestApiDependencyProvider.php b/src/Pyz/Zed/AuthRestApi/AuthRestApiDependencyProvider.php index 8c34f479f7..788d699925 100644 --- a/src/Pyz/Zed/AuthRestApi/AuthRestApiDependencyProvider.php +++ b/src/Pyz/Zed/AuthRestApi/AuthRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\AuthRestApi; use Spryker\Zed\AuthRestApi\AuthRestApiDependencyProvider as SprykerAuthRestApiDependencyProvider; diff --git a/src/Pyz/Zed/Authentication/AuthenticationDependencyProvider.php b/src/Pyz/Zed/Authentication/AuthenticationDependencyProvider.php index 34e5f6d4f7..e04e698011 100644 --- a/src/Pyz/Zed/Authentication/AuthenticationDependencyProvider.php +++ b/src/Pyz/Zed/Authentication/AuthenticationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Authentication; use Spryker\Zed\Authentication\AuthenticationDependencyProvider as SprykerAuthenticationDependencyProvider; diff --git a/src/Pyz/Zed/Authorization/AuthorizationDependencyProvider.php b/src/Pyz/Zed/Authorization/AuthorizationDependencyProvider.php index 4ad9e90eaa..6f30752c0d 100644 --- a/src/Pyz/Zed/Authorization/AuthorizationDependencyProvider.php +++ b/src/Pyz/Zed/Authorization/AuthorizationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Authorization; use Spryker\Zed\ApiKeyAuthorizationConnector\Communication\Plugin\Authorization\ApiKeyAuthorizationStrategyPlugin; diff --git a/src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php b/src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php index b0f9c8fef2..c48b00fd28 100644 --- a/src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php +++ b/src/Pyz/Zed/Availability/AvailabilityDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Availability; use Spryker\Zed\Availability\AvailabilityDependencyProvider as SprykerAvailabilityDependencyProvider; diff --git a/src/Pyz/Zed/AvailabilityCartConnector/AvailabilityCartConnectorDependencyProvider.php b/src/Pyz/Zed/AvailabilityCartConnector/AvailabilityCartConnectorDependencyProvider.php index 2459e4f1c9..aa48af4af0 100644 --- a/src/Pyz/Zed/AvailabilityCartConnector/AvailabilityCartConnectorDependencyProvider.php +++ b/src/Pyz/Zed/AvailabilityCartConnector/AvailabilityCartConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\AvailabilityCartConnector; use Spryker\Zed\AvailabilityCartConnector\AvailabilityCartConnectorDependencyProvider as SprykerAbstractBundleDependencyProvider; diff --git a/src/Pyz/Zed/AvailabilityNotification/AvailabilityNotificationConfig.php b/src/Pyz/Zed/AvailabilityNotification/AvailabilityNotificationConfig.php index bf88a927f8..b84c220214 100644 --- a/src/Pyz/Zed/AvailabilityNotification/AvailabilityNotificationConfig.php +++ b/src/Pyz/Zed/AvailabilityNotification/AvailabilityNotificationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\AvailabilityNotification; use Spryker\Zed\AvailabilityNotification\AvailabilityNotificationConfig as SprykerAvailabilityNotificationConfig; diff --git a/src/Pyz/Zed/AvailabilityStorage/AvailabilityStorageConfig.php b/src/Pyz/Zed/AvailabilityStorage/AvailabilityStorageConfig.php index d3c3f85846..8e0d3a1aa4 100644 --- a/src/Pyz/Zed/AvailabilityStorage/AvailabilityStorageConfig.php +++ b/src/Pyz/Zed/AvailabilityStorage/AvailabilityStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\AvailabilityStorage; use Spryker\Shared\AvailabilityStorage\AvailabilityStorageConfig as SprykerSharedAvailabilityStorageConfig; diff --git a/src/Pyz/Zed/Calculation/CalculationDependencyProvider.php b/src/Pyz/Zed/Calculation/CalculationDependencyProvider.php index a168d8012f..521ec2724a 100644 --- a/src/Pyz/Zed/Calculation/CalculationDependencyProvider.php +++ b/src/Pyz/Zed/Calculation/CalculationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Calculation; use Spryker\Zed\Calculation\CalculationDependencyProvider as SprykerCalculationDependencyProvider; @@ -184,7 +186,7 @@ class CalculationDependencyProvider extends SprykerCalculationDependencyProvider * * @return array<\Spryker\Zed\CalculationExtension\Dependency\Plugin\CalculationPluginInterface> */ - protected function getQuoteCalculatorPluginStack(Container $container): array + protected function getQuoteCalculatorPluginStack(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { /** @var array<\Spryker\Zed\Calculation\Dependency\Plugin\CalculationPluginInterface> $pluginStack */ $pluginStack = [ @@ -242,7 +244,7 @@ protected function getQuoteCalculatorPluginStack(Container $container): array * * @return array<\Spryker\Zed\CalculationExtension\Dependency\Plugin\CalculationPluginInterface> */ - protected function getOrderCalculatorPluginStack(Container $container): array + protected function getOrderCalculatorPluginStack(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ diff --git a/src/Pyz/Zed/Cart/CartDependencyProvider.php b/src/Pyz/Zed/Cart/CartDependencyProvider.php index a908b7eebb..db393fd7c3 100644 --- a/src/Pyz/Zed/Cart/CartDependencyProvider.php +++ b/src/Pyz/Zed/Cart/CartDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Cart; use Spryker\Zed\AvailabilityCartConnector\Communication\Plugin\Cart\CheckAvailabilityPlugin; @@ -68,7 +70,7 @@ class CartDependencyProvider extends SprykerCartDependencyProvider * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\ItemExpanderPluginInterface> */ - protected function getExpanderPlugins(Container $container): array + protected function getExpanderPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ProductCartPlugin(), @@ -97,7 +99,7 @@ protected function getExpanderPlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\CartChangeTransferNormalizerPluginInterface> */ - protected function getCartBeforePreCheckNormalizerPlugins(Container $container): array + protected function getCartBeforePreCheckNormalizerPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new CartChangeTransferQuantityNormalizerPlugin(), @@ -109,7 +111,7 @@ protected function getCartBeforePreCheckNormalizerPlugins(Container $container): * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\CartPreCheckPluginInterface> */ - protected function getCartPreCheckPlugins(Container $container): array + protected function getCartPreCheckPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ProductExistsCartPreCheckPlugin(), @@ -134,7 +136,7 @@ protected function getCartPreCheckPlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\CartOperationPostSavePluginInterface> */ - protected function getPostSavePlugins(Container $container): array + protected function getPostSavePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ChangeProductOptionQuantityPlugin(), @@ -150,7 +152,7 @@ protected function getPostSavePlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\PreReloadItemsPluginInterface> */ - protected function getPreReloadPlugins(Container $container): array + protected function getPreReloadPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new CartConfigurableBundlePreReloadPlugin(), @@ -168,7 +170,7 @@ protected function getPreReloadPlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\PostReloadItemsPluginInterface> */ - protected function getPostReloadItemsPlugins(Container $container): array + protected function getPostReloadItemsPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new AddThresholdMessagesCartPostReloadItemsPlugin(), #SalesOrderThresholdFeature @@ -180,7 +182,7 @@ protected function getPostReloadItemsPlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\CartTerminationPluginInterface> */ - protected function getTerminationPlugins(Container $container): array + protected function getTerminationPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ConfiguredBundleQuantityCartTerminationPlugin(), @@ -193,7 +195,7 @@ protected function getTerminationPlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\CartRemovalPreCheckPluginInterface> */ - protected function getCartRemovalPreCheckPlugins(Container $container): array + protected function getCartRemovalPreCheckPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ProductQuantityRestrictionCartRemovalPreCheckPlugin(), @@ -205,7 +207,7 @@ protected function getCartRemovalPreCheckPlugins(Container $container): array * * @return array<\Spryker\Zed\CartExtension\Dependency\Plugin\QuoteChangeObserverPluginInterface> */ - protected function getQuoteChangeObserverPlugins(Container $container): array + protected function getQuoteChangeObserverPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new DiscountQuoteChangeObserverPlugin(), diff --git a/src/Pyz/Zed/CartCode/CartCodeDependencyProvider.php b/src/Pyz/Zed/CartCode/CartCodeDependencyProvider.php index 23cf87a4bc..d4385d1b1c 100644 --- a/src/Pyz/Zed/CartCode/CartCodeDependencyProvider.php +++ b/src/Pyz/Zed/CartCode/CartCodeDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CartCode; use Spryker\Zed\CartCode\CartCodeDependencyProvider as SprykerCartCodeDependencyProvider; diff --git a/src/Pyz/Zed/CartNote/CartNoteDependencyProvider.php b/src/Pyz/Zed/CartNote/CartNoteDependencyProvider.php index 91e418522e..eab2083366 100644 --- a/src/Pyz/Zed/CartNote/CartNoteDependencyProvider.php +++ b/src/Pyz/Zed/CartNote/CartNoteDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CartNote; use Spryker\Zed\CartNote\CartNoteDependencyProvider as SprykerCartNoteDependencyProvider; diff --git a/src/Pyz/Zed/CartsRestApi/CartsRestApiConfig.php b/src/Pyz/Zed/CartsRestApi/CartsRestApiConfig.php index 4729124339..f39598f8dc 100644 --- a/src/Pyz/Zed/CartsRestApi/CartsRestApiConfig.php +++ b/src/Pyz/Zed/CartsRestApi/CartsRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CartsRestApi; use Spryker\Zed\CartsRestApi\CartsRestApiConfig as SprykerCartsRestApiConfig; diff --git a/src/Pyz/Zed/CartsRestApi/CartsRestApiDependencyProvider.php b/src/Pyz/Zed/CartsRestApi/CartsRestApiDependencyProvider.php index f46d34fedc..59a483ffb7 100644 --- a/src/Pyz/Zed/CartsRestApi/CartsRestApiDependencyProvider.php +++ b/src/Pyz/Zed/CartsRestApi/CartsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CartsRestApi; use Spryker\Zed\CartsRestApi\CartsRestApiDependencyProvider as SprykerCartsRestApiDependencyProvider; diff --git a/src/Pyz/Zed/Category/CategoryConfig.php b/src/Pyz/Zed/Category/CategoryConfig.php index eaee551c41..f15c88df90 100644 --- a/src/Pyz/Zed/Category/CategoryConfig.php +++ b/src/Pyz/Zed/Category/CategoryConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Category; use Spryker\Zed\Category\CategoryConfig as SprykerCategoryConfig; diff --git a/src/Pyz/Zed/Category/CategoryDependencyProvider.php b/src/Pyz/Zed/Category/CategoryDependencyProvider.php index 27c677141b..f033d168c6 100644 --- a/src/Pyz/Zed/Category/CategoryDependencyProvider.php +++ b/src/Pyz/Zed/Category/CategoryDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Category; use Spryker\Zed\Category\CategoryDependencyProvider as SprykerDependencyProvider; diff --git a/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportBusinessFactory.php b/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportBusinessFactory.php index 8758ab9ff6..42e6fcde7b 100644 --- a/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportBusinessFactory.php +++ b/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportBusinessFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryDataImport\Business; use Pyz\Zed\CategoryDataImport\Business\Model\CategoryWriterStep; diff --git a/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportFacade.php b/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportFacade.php index 58b80a7547..996cf4894c 100644 --- a/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportFacade.php +++ b/src/Pyz/Zed/CategoryDataImport/Business/CategoryDataImportFacade.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryDataImport\Business; use Generated\Shared\Transfer\DataImporterConfigurationTransfer; diff --git a/src/Pyz/Zed/CategoryDataImport/Business/Model/CategoryWriterStep.php b/src/Pyz/Zed/CategoryDataImport/Business/Model/CategoryWriterStep.php index c69e607525..9127d9647d 100644 --- a/src/Pyz/Zed/CategoryDataImport/Business/Model/CategoryWriterStep.php +++ b/src/Pyz/Zed/CategoryDataImport/Business/Model/CategoryWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryDataImport\Business\Model; use Spryker\Zed\CategoryDataImport\Business\Model\CategoryWriterStep as SprykerCategoryWriterStep; diff --git a/src/Pyz/Zed/CategoryGui/CategoryGuiDependencyProvider.php b/src/Pyz/Zed/CategoryGui/CategoryGuiDependencyProvider.php index 81d44dac8d..82b3509bdf 100644 --- a/src/Pyz/Zed/CategoryGui/CategoryGuiDependencyProvider.php +++ b/src/Pyz/Zed/CategoryGui/CategoryGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryGui; use Spryker\Zed\CategoryGui\CategoryGuiDependencyProvider as SpykerCategoryGuiDependencyProvider; diff --git a/src/Pyz/Zed/CategoryImageStorage/CategoryImageStorageConfig.php b/src/Pyz/Zed/CategoryImageStorage/CategoryImageStorageConfig.php index f3c7ac375b..4b68e089ba 100644 --- a/src/Pyz/Zed/CategoryImageStorage/CategoryImageStorageConfig.php +++ b/src/Pyz/Zed/CategoryImageStorage/CategoryImageStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryImageStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CategoryPageSearch/CategoryPageSearchConfig.php b/src/Pyz/Zed/CategoryPageSearch/CategoryPageSearchConfig.php index f5d6b6e0ad..f12a5a229f 100644 --- a/src/Pyz/Zed/CategoryPageSearch/CategoryPageSearchConfig.php +++ b/src/Pyz/Zed/CategoryPageSearch/CategoryPageSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryPageSearch; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CategoryStorage/CategoryStorageConfig.php b/src/Pyz/Zed/CategoryStorage/CategoryStorageConfig.php index 96e7a52e63..604dcf1ce5 100644 --- a/src/Pyz/Zed/CategoryStorage/CategoryStorageConfig.php +++ b/src/Pyz/Zed/CategoryStorage/CategoryStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CategoryStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ChartGui/ChartGuiDependencyProvider.php b/src/Pyz/Zed/ChartGui/ChartGuiDependencyProvider.php index 53189d67af..8c0baf5c3e 100644 --- a/src/Pyz/Zed/ChartGui/ChartGuiDependencyProvider.php +++ b/src/Pyz/Zed/ChartGui/ChartGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ChartGui; use Pyz\Zed\ExampleChart\Plugin\ExampleChartPlugin; diff --git a/src/Pyz/Zed/Checkout/CheckoutDependencyProvider.php b/src/Pyz/Zed/Checkout/CheckoutDependencyProvider.php index 33d42a9ce1..a0ccce61f4 100644 --- a/src/Pyz/Zed/Checkout/CheckoutDependencyProvider.php +++ b/src/Pyz/Zed/Checkout/CheckoutDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Checkout; use Spryker\Zed\Availability\Communication\Plugin\ProductsAvailableCheckoutPreConditionPlugin; @@ -51,7 +53,7 @@ class CheckoutDependencyProvider extends SprykerCheckoutDependencyProvider * * @return array<\Spryker\Zed\CheckoutExtension\Dependency\Plugin\CheckoutPreConditionPluginInterface> */ - protected function getCheckoutPreConditions(Container $container): array + protected function getCheckoutPreConditions(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new CustomerPreConditionCheckerPlugin(), @@ -80,7 +82,7 @@ protected function getCheckoutPreConditions(Container $container): array * * @return array<\Spryker\Zed\CheckoutExtension\Dependency\Plugin\CheckoutDoSaveOrderInterface>|array<\Spryker\Zed\Checkout\Dependency\Plugin\CheckoutSaveOrderInterface> */ - protected function getCheckoutOrderSavers(Container $container): array + protected function getCheckoutOrderSavers(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new CustomerOrderSavePlugin(), @@ -112,7 +114,7 @@ protected function getCheckoutOrderSavers(Container $container): array * * @return array<\Spryker\Zed\CheckoutExtension\Dependency\Plugin\CheckoutPostSaveInterface> */ - protected function getCheckoutPostHooks(Container $container): array + protected function getCheckoutPostHooks(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new DummyPaymentCheckoutPostSavePlugin(), @@ -127,7 +129,7 @@ protected function getCheckoutPostHooks(Container $container): array * * @return array<\Spryker\Zed\Checkout\Dependency\Plugin\CheckoutPreSaveInterface>|array<\Spryker\Zed\Checkout\Dependency\Plugin\CheckoutPreSaveHookInterface> */ - protected function getCheckoutPreSaveHooks(Container $container): array + protected function getCheckoutPreSaveHooks(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new SalesOrderExpanderPlugin(), diff --git a/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiConfig.php b/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiConfig.php index ba5548e5c8..5bdb1830fc 100644 --- a/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiConfig.php +++ b/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CheckoutRestApi; use Spryker\Zed\CheckoutRestApi\CheckoutRestApiConfig as SprykerCheckoutRestApiConfig; diff --git a/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiDependencyProvider.php b/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiDependencyProvider.php index cf307beb7f..2fbfc95129 100644 --- a/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiDependencyProvider.php +++ b/src/Pyz/Zed/CheckoutRestApi/CheckoutRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CheckoutRestApi; use Spryker\Zed\CheckoutRestApi\CheckoutRestApiDependencyProvider as SprykerCheckoutRestApiDependencyProvider; diff --git a/src/Pyz/Zed/Cms/CmsConfig.php b/src/Pyz/Zed/Cms/CmsConfig.php index 67e845f48d..7cf9ada0e9 100644 --- a/src/Pyz/Zed/Cms/CmsConfig.php +++ b/src/Pyz/Zed/Cms/CmsConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Cms; use Spryker\Zed\Cms\CmsConfig as SprykerCmsConfig; diff --git a/src/Pyz/Zed/Cms/CmsDependencyProvider.php b/src/Pyz/Zed/Cms/CmsDependencyProvider.php index 9f7282feae..4561b64754 100644 --- a/src/Pyz/Zed/Cms/CmsDependencyProvider.php +++ b/src/Pyz/Zed/Cms/CmsDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Cms; use Spryker\Zed\Cms\CmsDependencyProvider as SprykerCmsDependencyProvider; @@ -22,7 +24,7 @@ class CmsDependencyProvider extends SprykerCmsDependencyProvider * * @return array<\Spryker\Zed\CmsExtension\Dependency\Plugin\CmsVersionPostSavePluginInterface> */ - protected function getPostSavePlugins(Container $container): array + protected function getPostSavePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new UserCmsVersionPostSavePlugin(), @@ -34,7 +36,7 @@ protected function getPostSavePlugins(Container $container): array * * @return array<\Spryker\Zed\CmsExtension\Dependency\Plugin\CmsVersionTransferExpanderPluginInterface> */ - protected function getTransferExpanderPlugins(Container $container): array + protected function getTransferExpanderPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new UserCmsVersionTransferExpanderPlugin(), diff --git a/src/Pyz/Zed/CmsBlockCategoryStorage/CmsBlockCategoryStorageConfig.php b/src/Pyz/Zed/CmsBlockCategoryStorage/CmsBlockCategoryStorageConfig.php index 6f5a76b69b..57ce28b617 100644 --- a/src/Pyz/Zed/CmsBlockCategoryStorage/CmsBlockCategoryStorageConfig.php +++ b/src/Pyz/Zed/CmsBlockCategoryStorage/CmsBlockCategoryStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsBlockCategoryStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CmsBlockGui/CmsBlockGuiDependencyProvider.php b/src/Pyz/Zed/CmsBlockGui/CmsBlockGuiDependencyProvider.php index 9ccf61bbfb..d686bed56e 100644 --- a/src/Pyz/Zed/CmsBlockGui/CmsBlockGuiDependencyProvider.php +++ b/src/Pyz/Zed/CmsBlockGui/CmsBlockGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsBlockGui; use Spryker\Zed\CmsBlockCategoryConnector\Communication\Plugin\CmsBlockCategoryFormPlugin; diff --git a/src/Pyz/Zed/CmsBlockProductStorage/CmsBlockProductStorageConfig.php b/src/Pyz/Zed/CmsBlockProductStorage/CmsBlockProductStorageConfig.php index 29fa61132b..56ba17c629 100644 --- a/src/Pyz/Zed/CmsBlockProductStorage/CmsBlockProductStorageConfig.php +++ b/src/Pyz/Zed/CmsBlockProductStorage/CmsBlockProductStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsBlockProductStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageConfig.php b/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageConfig.php index 90f93ac9fa..d4fa290973 100644 --- a/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageConfig.php +++ b/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsBlockStorage; use Spryker\Shared\Publisher\PublisherConfig; diff --git a/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageDependencyProvider.php b/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageDependencyProvider.php index ebd501baff..f386d6ff3d 100644 --- a/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageDependencyProvider.php +++ b/src/Pyz/Zed/CmsBlockStorage/CmsBlockStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsBlockStorage; use Spryker\Zed\CmsBlockStorage\CmsBlockStorageDependencyProvider as SprykerCmsBlockStorageDependencyProvider; diff --git a/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetConfig.php b/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetConfig.php index 1cc26dcb64..03711e0a0c 100644 --- a/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetConfig.php +++ b/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsContentWidget; use Spryker\Shared\CmsContentWidgetCmsBlockConnector\ContentWidgetConfigurationProvider\CmsContentWidgetCmsBlockConnectorConfigurationProvider; diff --git a/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetDependencyProvider.php b/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetDependencyProvider.php index d64e17553d..75e2e792c0 100644 --- a/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetDependencyProvider.php +++ b/src/Pyz/Zed/CmsContentWidget/CmsContentWidgetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsContentWidget; use Spryker\Shared\CmsContentWidgetProductConnector\ContentWidgetConfigurationProvider\CmsProductContentWidgetConfigurationProvider; @@ -27,7 +29,7 @@ class CmsContentWidgetDependencyProvider extends SprykerCmsContentWidgetDependen * * @return array<\Spryker\Zed\CmsContentWidget\Dependency\Plugin\CmsContentWidgetParameterMapperPluginInterface> */ - protected function getCmsContentWidgetParameterMapperPlugins(Container $container) + protected function getCmsContentWidgetParameterMapperPlugins(Container $container) // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ CmsProductContentWidgetConfigurationProvider::FUNCTION_NAME => new CmsProductSkuMapperPlugin(), diff --git a/src/Pyz/Zed/CmsGui/CmsGuiDependencyProvider.php b/src/Pyz/Zed/CmsGui/CmsGuiDependencyProvider.php index 2cc1eb5ff5..62dab78595 100644 --- a/src/Pyz/Zed/CmsGui/CmsGuiDependencyProvider.php +++ b/src/Pyz/Zed/CmsGui/CmsGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsGui; use Spryker\Zed\CmsGui\CmsGuiDependencyProvider as SprykerCmsGuiDependencyProvider; diff --git a/src/Pyz/Zed/CmsPageSearch/CmsPageSearchConfig.php b/src/Pyz/Zed/CmsPageSearch/CmsPageSearchConfig.php index 03da467082..760815adc2 100644 --- a/src/Pyz/Zed/CmsPageSearch/CmsPageSearchConfig.php +++ b/src/Pyz/Zed/CmsPageSearch/CmsPageSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsPageSearch; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CmsSlotBlock/CmsSlotBlockConfig.php b/src/Pyz/Zed/CmsSlotBlock/CmsSlotBlockConfig.php index 9a57b3f4d9..f08db013aa 100644 --- a/src/Pyz/Zed/CmsSlotBlock/CmsSlotBlockConfig.php +++ b/src/Pyz/Zed/CmsSlotBlock/CmsSlotBlockConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsSlotBlock; use Spryker\Shared\CmsSlotBlockCategoryConnector\CmsSlotBlockCategoryConnectorConfig; diff --git a/src/Pyz/Zed/CmsSlotBlockGui/CmsSlotBlockGuiDependencyProvider.php b/src/Pyz/Zed/CmsSlotBlockGui/CmsSlotBlockGuiDependencyProvider.php index da452c1cea..233bf760d2 100644 --- a/src/Pyz/Zed/CmsSlotBlockGui/CmsSlotBlockGuiDependencyProvider.php +++ b/src/Pyz/Zed/CmsSlotBlockGui/CmsSlotBlockGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsSlotBlockGui; use Spryker\Zed\CmsSlotBlockCategoryGui\Communication\Plugin\CategorySlotBlockConditionFormPlugin; diff --git a/src/Pyz/Zed/CmsSlotBlockStorage/CmsSlotBlockStorageConfig.php b/src/Pyz/Zed/CmsSlotBlockStorage/CmsSlotBlockStorageConfig.php index bb3c81e1b4..5dfa5b34d5 100644 --- a/src/Pyz/Zed/CmsSlotBlockStorage/CmsSlotBlockStorageConfig.php +++ b/src/Pyz/Zed/CmsSlotBlockStorage/CmsSlotBlockStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsSlotBlockStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CmsSlotStorage/CmsSlotStorageConfig.php b/src/Pyz/Zed/CmsSlotStorage/CmsSlotStorageConfig.php index 66e34c0100..fa3b09614c 100644 --- a/src/Pyz/Zed/CmsSlotStorage/CmsSlotStorageConfig.php +++ b/src/Pyz/Zed/CmsSlotStorage/CmsSlotStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsSlotStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CmsStorage/CmsStorageConfig.php b/src/Pyz/Zed/CmsStorage/CmsStorageConfig.php index 8c656f58ea..ab37b8183d 100644 --- a/src/Pyz/Zed/CmsStorage/CmsStorageConfig.php +++ b/src/Pyz/Zed/CmsStorage/CmsStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/CmsStorage/CmsStorageDependencyProvider.php b/src/Pyz/Zed/CmsStorage/CmsStorageDependencyProvider.php index 46a3ace810..23a5b1e863 100644 --- a/src/Pyz/Zed/CmsStorage/CmsStorageDependencyProvider.php +++ b/src/Pyz/Zed/CmsStorage/CmsStorageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CmsStorage; use Spryker\Zed\CmsContentWidget\Communication\Plugin\CmsPageDataExpander\CmsPageParameterMapExpanderPlugin; diff --git a/src/Pyz/Zed/Collector/CollectorConfig.php b/src/Pyz/Zed/Collector/CollectorConfig.php index cf9a70d077..c3fa559282 100644 --- a/src/Pyz/Zed/Collector/CollectorConfig.php +++ b/src/Pyz/Zed/Collector/CollectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Collector; use Spryker\Zed\Collector\CollectorConfig as SprykerCollectorConfig; diff --git a/src/Pyz/Zed/ConfigurableBundleGui/ConfigurableBundleGuiDependencyProvider.php b/src/Pyz/Zed/ConfigurableBundleGui/ConfigurableBundleGuiDependencyProvider.php index d9719d27c7..2026043ea5 100644 --- a/src/Pyz/Zed/ConfigurableBundleGui/ConfigurableBundleGuiDependencyProvider.php +++ b/src/Pyz/Zed/ConfigurableBundleGui/ConfigurableBundleGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ConfigurableBundleGui; use Spryker\Zed\ConfigurableBundleGui\ConfigurableBundleGuiDependencyProvider as SprykerConfigurableBundleGuiDependencyProvider; diff --git a/src/Pyz/Zed/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchConfig.php b/src/Pyz/Zed/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchConfig.php index 1969302db2..e94373fe02 100644 --- a/src/Pyz/Zed/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchConfig.php +++ b/src/Pyz/Zed/ConfigurableBundlePageSearch/ConfigurableBundlePageSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ConfigurableBundlePageSearch; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ConfigurableBundleStorage/ConfigurableBundleStorageConfig.php b/src/Pyz/Zed/ConfigurableBundleStorage/ConfigurableBundleStorageConfig.php index cd7a46685c..e964e92234 100644 --- a/src/Pyz/Zed/ConfigurableBundleStorage/ConfigurableBundleStorageConfig.php +++ b/src/Pyz/Zed/ConfigurableBundleStorage/ConfigurableBundleStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ConfigurableBundleStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Console/ConsoleConfig.php b/src/Pyz/Zed/Console/ConsoleConfig.php index 153f143ba0..0305889daa 100644 --- a/src/Pyz/Zed/Console/ConsoleConfig.php +++ b/src/Pyz/Zed/Console/ConsoleConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Console; use Pyz\Shared\Console\ConsoleConstants; diff --git a/src/Pyz/Zed/Console/ConsoleDependencyProvider.php b/src/Pyz/Zed/Console/ConsoleDependencyProvider.php index 4eab3be47d..0cd14200b0 100644 --- a/src/Pyz/Zed/Console/ConsoleDependencyProvider.php +++ b/src/Pyz/Zed/Console/ConsoleDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Console; use Pyz\Zed\DataImport\DataImportConfig; @@ -430,7 +432,7 @@ protected function getConsoleCommands(Container $container): array * * @return array<\Spryker\Zed\Console\Dependency\Plugin\ConsolePostRunHookPluginInterface> */ - public function getConsolePostRunHookPlugins(Container $container): array + public function getConsolePostRunHookPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new EventBehaviorPostHookPlugin(), diff --git a/src/Pyz/Zed/ContentGui/ContentGuiDependencyProvider.php b/src/Pyz/Zed/ContentGui/ContentGuiDependencyProvider.php index 9b252ba814..1a8b93a586 100644 --- a/src/Pyz/Zed/ContentGui/ContentGuiDependencyProvider.php +++ b/src/Pyz/Zed/ContentGui/ContentGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ContentGui; use Spryker\Zed\ContentBannerGui\Communication\Plugin\ContentGui\ContentBannerContentGuiEditorPlugin; diff --git a/src/Pyz/Zed/ContentStorage/ContentStorageConfig.php b/src/Pyz/Zed/ContentStorage/ContentStorageConfig.php index 03d1cf7e17..8aef73df81 100644 --- a/src/Pyz/Zed/ContentStorage/ContentStorageConfig.php +++ b/src/Pyz/Zed/ContentStorage/ContentStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ContentStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Customer/CustomerConfig.php b/src/Pyz/Zed/Customer/CustomerConfig.php index d06101aabf..b42c3a5e4b 100644 --- a/src/Pyz/Zed/Customer/CustomerConfig.php +++ b/src/Pyz/Zed/Customer/CustomerConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Customer; use Spryker\Zed\Customer\CustomerConfig as SprykerCustomerConfig; diff --git a/src/Pyz/Zed/Customer/CustomerDependencyProvider.php b/src/Pyz/Zed/Customer/CustomerDependencyProvider.php index d86c28144e..c6de6f1514 100644 --- a/src/Pyz/Zed/Customer/CustomerDependencyProvider.php +++ b/src/Pyz/Zed/Customer/CustomerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Customer; use Spryker\Shared\Newsletter\NewsletterConstants; diff --git a/src/Pyz/Zed/CustomerAccess/CustomerAccessConfig.php b/src/Pyz/Zed/CustomerAccess/CustomerAccessConfig.php index 2242e785dc..e1b5232a55 100644 --- a/src/Pyz/Zed/CustomerAccess/CustomerAccessConfig.php +++ b/src/Pyz/Zed/CustomerAccess/CustomerAccessConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CustomerAccess; use Spryker\Shared\CustomerAccess\CustomerAccessConfig as SprykerSharedCustomerAccessConfig; diff --git a/src/Pyz/Zed/CustomerAccessStorage/CustomerAccessStorageConfig.php b/src/Pyz/Zed/CustomerAccessStorage/CustomerAccessStorageConfig.php index 6971385529..197a9fd4c4 100644 --- a/src/Pyz/Zed/CustomerAccessStorage/CustomerAccessStorageConfig.php +++ b/src/Pyz/Zed/CustomerAccessStorage/CustomerAccessStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\CustomerAccessStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Dashboard/DashboardDependencyProvider.php b/src/Pyz/Zed/Dashboard/DashboardDependencyProvider.php index 7a9d13e8a7..14cf4708b6 100644 --- a/src/Pyz/Zed/Dashboard/DashboardDependencyProvider.php +++ b/src/Pyz/Zed/Dashboard/DashboardDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Dashboard; use Spryker\Zed\Dashboard\DashboardDependencyProvider as SprykerDashboardDependencyProvider; diff --git a/src/Pyz/Zed/DataExport/DataExportDependencyProvider.php b/src/Pyz/Zed/DataExport/DataExportDependencyProvider.php index 0a2554d30c..f98accd12b 100644 --- a/src/Pyz/Zed/DataExport/DataExportDependencyProvider.php +++ b/src/Pyz/Zed/DataExport/DataExportDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataExport; use Spryker\Zed\DataExport\DataExportDependencyProvider as SprykerDataExportDependencyProvider; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/DataSet/CombinedProductMandatoryColumnCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/DataSet/CombinedProductMandatoryColumnCondition.php index 5f948f8ae7..8d5ce65fac 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/DataSet/CombinedProductMandatoryColumnCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/DataSet/CombinedProductMandatoryColumnCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\DataSet; use Pyz\Zed\DataImport\Business\Model\DataSet\DataSetConditionInterface; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedAttributesExtractorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedAttributesExtractorStep.php index 0e7a6f73cf..a5af2c667a 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedAttributesExtractorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedAttributesExtractorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\Product; use Pyz\Zed\DataImport\Business\Model\Product\AttributesExtractorStep; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedProductLocalizedAttributesExtractorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedProductLocalizedAttributesExtractorStep.php index f6e2a76d95..d442d4100a 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedProductLocalizedAttributesExtractorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/Product/CombinedProductLocalizedAttributesExtractorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\Product; use Pyz\Zed\DataImport\Business\Model\Product\ProductLocalizedAttributesExtractorStep; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractHydratorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractHydratorStep.php index 5521591f58..2ab5dc9055 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductAbstract; use Pyz\Zed\DataImport\Business\Exception\InvalidDataException; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractTypeDataSetCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractTypeDataSetCondition.php index 22eecf4276..363b2f91a7 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractTypeDataSetCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/CombinedProductAbstractTypeDataSetCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductAbstract; use Pyz\Zed\DataImport\Business\Model\DataSet\DataSetConditionInterface; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/Writer/CombinedProductAbstractPropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/Writer/CombinedProductAbstractPropelDataSetWriter.php index ad4e732349..3f652ce977 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/Writer/CombinedProductAbstractPropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstract/Writer/CombinedProductAbstractPropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductAbstract\Writer; use Pyz\Zed\DataImport\Business\Model\Product\Repository\ProductRepository; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreHydratorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreHydratorStep.php index 44caa0bb8a..6a31eb1e29 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductAbstractStore; use Pyz\Zed\DataImport\Business\Model\ProductAbstractStore\ProductAbstractStoreHydratorStep; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreMandatoryColumnCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreMandatoryColumnCondition.php index cc81d9d13e..5290ae7fe9 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreMandatoryColumnCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStoreMandatoryColumnCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductAbstractStore; use Pyz\Zed\DataImport\Business\CombinedProduct\DataSet\CombinedProductMandatoryColumnCondition; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/Writer/CombinedProductAbstractStorePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/Writer/CombinedProductAbstractStorePropelDataSetWriter.php index a970f073f6..60745f5cb1 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/Writer/CombinedProductAbstractStorePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductAbstractStore/Writer/CombinedProductAbstractStorePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductAbstractStore\Writer; use Pyz\Zed\DataImport\Business\Model\ProductAbstractStore\Writer\ProductAbstractStorePropelDataSetWriter; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteHydratorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteHydratorStep.php index 3f209a2b1b..4a940300d9 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductConcrete; use Pyz\Zed\DataImport\Business\Exception\InvalidDataException; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteTypeDataSetCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteTypeDataSetCondition.php index e62a595832..d17209c0ce 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteTypeDataSetCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/CombinedProductConcreteTypeDataSetCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductConcrete; use Pyz\Zed\DataImport\Business\Model\DataSet\DataSetConditionInterface; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/Writer/CombinedProductConcretePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/Writer/CombinedProductConcretePropelDataSetWriter.php index d2b6632dab..7025800cfb 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/Writer/CombinedProductConcretePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductConcrete/Writer/CombinedProductConcretePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductConcrete\Writer; use Pyz\Zed\DataImport\Business\CombinedProduct\ProductConcrete\CombinedProductConcreteHydratorStep; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupMandatoryColumnCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupMandatoryColumnCondition.php index 201a2b9914..b865770dde 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupMandatoryColumnCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupMandatoryColumnCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductGroup; use Pyz\Zed\DataImport\Business\CombinedProduct\DataSet\CombinedProductMandatoryColumnCondition; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupWriter.php index da41e227f0..2a3140ea8f 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductGroup/CombinedProductGroupWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductGroup; use Pyz\Zed\DataImport\Business\Model\Product\Repository\ProductRepository; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageHydratorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageHydratorStep.php index 3c829da3c2..f819294817 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductImage; use Pyz\Zed\DataImport\Business\Exception\InvalidDataException; @@ -108,10 +110,10 @@ protected function assignProductType(DataSetInterface $dataSet): DataSetInterfac { $this->assertAssignableProductTypeColumn($dataSet); - if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] == static::ASSIGNABLE_PRODUCT_TYPE_ABSTRACT) { + if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] === static::ASSIGNABLE_PRODUCT_TYPE_ABSTRACT) { $dataSet[static::COLUMN_CONCRETE_SKU] = $dataSet[ProductImageHydratorStep::KEY_IMAGE_SET_FK_PRODUCT] = null; } - if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] == static::ASSIGNABLE_PRODUCT_TYPE_CONCRETE) { + if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] === static::ASSIGNABLE_PRODUCT_TYPE_CONCRETE) { $dataSet[static::COLUMN_ABSTRACT_SKU] = $dataSet[ProductImageHydratorStep::KEY_IMAGE_SET_FK_PRODUCT_ABSTRACT] = null; } diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageMandatoryColumnCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageMandatoryColumnCondition.php index fd3d7b2af2..6c45e2b52e 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageMandatoryColumnCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/CombinedProductImageMandatoryColumnCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductImage; use Pyz\Zed\DataImport\Business\CombinedProduct\DataSet\CombinedProductMandatoryColumnCondition; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/Writer/CombinedProductImagePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/Writer/CombinedProductImagePropelDataSetWriter.php index 5b7912c268..928b151113 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/Writer/CombinedProductImagePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductImage/Writer/CombinedProductImagePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductImage\Writer; use Pyz\Zed\DataImport\Business\Model\ProductImage\Repository\ProductImageRepositoryInterface; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceHydratorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceHydratorStep.php index 63ed143783..fd408157e0 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductPrice; use Pyz\Zed\DataImport\Business\Exception\InvalidDataException; @@ -126,10 +128,10 @@ protected function assignProductType(DataSetInterface $dataSet): DataSetInterfac { $this->assertAssignableProductTypeColumn($dataSet); - if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] == static::ASSIGNABLE_PRODUCT_TYPE_ABSTRACT) { + if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] === static::ASSIGNABLE_PRODUCT_TYPE_ABSTRACT) { $dataSet[static::COLUMN_CONCRETE_SKU] = null; } - if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] == static::ASSIGNABLE_PRODUCT_TYPE_CONCRETE) { + if ($dataSet[static::COLUMN_ASSIGNED_PRODUCT_TYPE] === static::ASSIGNABLE_PRODUCT_TYPE_CONCRETE) { $dataSet[static::COLUMN_ABSTRACT_SKU] = null; } diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceMandatoryColumnCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceMandatoryColumnCondition.php index d14d23f0ff..88c69896b5 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceMandatoryColumnCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/CombinedProductPriceMandatoryColumnCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductPrice; use Pyz\Zed\DataImport\Business\CombinedProduct\DataSet\CombinedProductMandatoryColumnCondition; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/Writer/CombinedProductPricePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/Writer/CombinedProductPricePropelDataSetWriter.php index f8a12dabf4..4522cd6146 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/Writer/CombinedProductPricePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductPrice/Writer/CombinedProductPricePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductPrice\Writer; use Pyz\Zed\DataImport\Business\CombinedProduct\ProductPrice\CombinedProductPriceHydratorStep; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockHydratorStep.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockHydratorStep.php index c19e0c2e8a..698edefd9a 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductStock; use Pyz\Zed\DataImport\Business\Model\ProductStock\ProductStockHydratorStep; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockMandatoryColumnCondition.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockMandatoryColumnCondition.php index d374c5bb1d..b85ca1ad7d 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockMandatoryColumnCondition.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/CombinedProductStockMandatoryColumnCondition.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductStock; use Pyz\Zed\DataImport\Business\CombinedProduct\DataSet\CombinedProductMandatoryColumnCondition; diff --git a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/Writer/CombinedProductStockPropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/Writer/CombinedProductStockPropelDataSetWriter.php index 71423d1d94..77c49f6453 100644 --- a/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/Writer/CombinedProductStockPropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/CombinedProduct/ProductStock/Writer/CombinedProductStockPropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\CombinedProduct\ProductStock\Writer; use Pyz\Zed\DataImport\Business\CombinedProduct\ProductStock\CombinedProductStockHydratorStep; diff --git a/src/Pyz/Zed/DataImport/Business/DataImportBusinessFactory.php b/src/Pyz/Zed/DataImport/Business/DataImportBusinessFactory.php index 18415ee7f6..db8edff890 100644 --- a/src/Pyz/Zed/DataImport/Business/DataImportBusinessFactory.php +++ b/src/Pyz/Zed/DataImport/Business/DataImportBusinessFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business; use Generated\Shared\Transfer\DataImportConfigurationActionTransfer; @@ -225,7 +227,7 @@ public function getDataImporterByType(DataImportConfigurationActionTransfer $dat * * @return \Pyz\Zed\DataImport\Business\Model\DataImporterConditional */ - public function createDataImporterConditional($importType, DataReaderInterface $reader): DataImporterConditional + public function createDataImporterConditional(string $importType, DataReaderInterface $reader): DataImporterConditional { return new DataImporterConditional($importType, $reader, $this->getGracefulRunnerFacade()); } @@ -683,8 +685,8 @@ protected function createNavigationNodeImporter( * @return \Pyz\Zed\DataImport\Business\Model\Navigation\NavigationKeyToIdNavigationStep */ protected function createNavigationKeyToIdNavigationStep( - $source = NavigationKeyToIdNavigationStep::KEY_SOURCE, - $target = NavigationKeyToIdNavigationStep::KEY_TARGET, + string $source = NavigationKeyToIdNavigationStep::KEY_SOURCE, + string $target = NavigationKeyToIdNavigationStep::KEY_TARGET, ): NavigationKeyToIdNavigationStep { return new NavigationKeyToIdNavigationStep($source, $target); } @@ -696,8 +698,8 @@ protected function createNavigationKeyToIdNavigationStep( * @return \Pyz\Zed\DataImport\Business\Model\NavigationNode\NavigationNodeValidityDatesStep */ protected function createNavigationNodeValidityDatesStep( - $keyValidFrom, - $keyValidTo, + string $keyValidFrom, + string $keyValidTo, ): NavigationNodeValidityDatesStep { return new NavigationNodeValidityDatesStep($keyValidFrom, $keyValidTo); } @@ -1274,8 +1276,8 @@ protected function createAddProductAbstractSkusStep(): AddProductAbstractSkusSte * @return \Pyz\Zed\DataImport\Business\Model\Locale\LocaleNameToIdLocaleStep */ protected function createLocaleNameToIdStep( - $source = LocaleNameToIdLocaleStep::KEY_SOURCE, - $target = LocaleNameToIdLocaleStep::KEY_TARGET, + string $source = LocaleNameToIdLocaleStep::KEY_SOURCE, + string $target = LocaleNameToIdLocaleStep::KEY_TARGET, ): LocaleNameToIdLocaleStep { return new LocaleNameToIdLocaleStep($source, $target); } @@ -1313,8 +1315,8 @@ protected function createProductSkuToIdProductStep( * @return \Pyz\Zed\DataImport\Business\Model\Tax\TaxSetNameToIdTaxSetStep */ protected function createTaxSetNameToIdTaxSetStep( - $source = TaxSetNameToIdTaxSetStep::KEY_SOURCE, - $target = TaxSetNameToIdTaxSetStep::KEY_TARGET, + string $source = TaxSetNameToIdTaxSetStep::KEY_SOURCE, + string $target = TaxSetNameToIdTaxSetStep::KEY_TARGET, ): TaxSetNameToIdTaxSetStep { return new TaxSetNameToIdTaxSetStep($source, $target); } @@ -1390,7 +1392,7 @@ public function createProductImageRepository(): ProductImageRepositoryInterface * @return \Pyz\Zed\DataImport\Business\Model\DataImporterDataSetWriterAwareConditional */ public function createDataImporterWriterAwareConditional( - $importType, + string $importType, DataReaderInterface $reader, ): DataImporterDataSetWriterAwareConditional { return new DataImporterDataSetWriterAwareConditional($importType, $reader, $this->getGracefulRunnerFacade()); diff --git a/src/Pyz/Zed/DataImport/Business/DataImportFacade.php b/src/Pyz/Zed/DataImport/Business/DataImportFacade.php index 697eeb137e..7525ec3299 100644 --- a/src/Pyz/Zed/DataImport/Business/DataImportFacade.php +++ b/src/Pyz/Zed/DataImport/Business/DataImportFacade.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business; use Spryker\Zed\DataImport\Business\DataImportFacade as SprykerDataImportFacade; diff --git a/src/Pyz/Zed/DataImport/Business/DataImportFacadeInterface.php b/src/Pyz/Zed/DataImport/Business/DataImportFacadeInterface.php index fca48fa158..fa7b5bcd86 100644 --- a/src/Pyz/Zed/DataImport/Business/DataImportFacadeInterface.php +++ b/src/Pyz/Zed/DataImport/Business/DataImportFacadeInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business; use Spryker\Zed\DataImport\Business\DataImportFacadeInterface as SprykerDataImportFacadeInterface; diff --git a/src/Pyz/Zed/DataImport/Business/Exception/EntityNotFoundException.php b/src/Pyz/Zed/DataImport/Business/Exception/EntityNotFoundException.php index 6951b728b7..a5414fd7de 100644 --- a/src/Pyz/Zed/DataImport/Business/Exception/EntityNotFoundException.php +++ b/src/Pyz/Zed/DataImport/Business/Exception/EntityNotFoundException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Exception; use Spryker\Zed\DataImport\Business\Exception\DataImportException; diff --git a/src/Pyz/Zed/DataImport/Business/Exception/InvalidDataException.php b/src/Pyz/Zed/DataImport/Business/Exception/InvalidDataException.php index 066026e17a..16437ef454 100644 --- a/src/Pyz/Zed/DataImport/Business/Exception/InvalidDataException.php +++ b/src/Pyz/Zed/DataImport/Business/Exception/InvalidDataException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Exception; use Spryker\Zed\DataImport\Business\Exception\DataImportException; diff --git a/src/Pyz/Zed/DataImport/Business/Exception/InvalidPriceDataKeyException.php b/src/Pyz/Zed/DataImport/Business/Exception/InvalidPriceDataKeyException.php index ee47cc5a50..c1eaa554c3 100644 --- a/src/Pyz/Zed/DataImport/Business/Exception/InvalidPriceDataKeyException.php +++ b/src/Pyz/Zed/DataImport/Business/Exception/InvalidPriceDataKeyException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Exception; use Spryker\Zed\DataImport\Business\Exception\DataImportException; diff --git a/src/Pyz/Zed/DataImport/Business/Exception/InvalidSkuProductException.php b/src/Pyz/Zed/DataImport/Business/Exception/InvalidSkuProductException.php index bd19740d5b..43474adb87 100644 --- a/src/Pyz/Zed/DataImport/Business/Exception/InvalidSkuProductException.php +++ b/src/Pyz/Zed/DataImport/Business/Exception/InvalidSkuProductException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Exception; use Spryker\Zed\DataImport\Business\Exception\DataImportException; diff --git a/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeByKeyNotFoundException.php b/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeByKeyNotFoundException.php index a8e81b9c4a..4252d4693e 100644 --- a/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeByKeyNotFoundException.php +++ b/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeByKeyNotFoundException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Exception; use Spryker\Zed\DataImport\Business\Exception\DataImportException; diff --git a/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeValidityDateException.php b/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeValidityDateException.php index 11dc7e4bd6..0d377c6faf 100644 --- a/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeValidityDateException.php +++ b/src/Pyz/Zed/DataImport/Business/Exception/NavigationNodeValidityDateException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Exception; use Spryker\Zed\DataImport\Business\Exception\DataImportException; diff --git a/src/Pyz/Zed/DataImport/Business/Model/CategoryTemplate/CategoryTemplateWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/CategoryTemplate/CategoryTemplateWriterStep.php index c5f1a5f7cb..4d9e0bbfb9 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/CategoryTemplate/CategoryTemplateWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/CategoryTemplate/CategoryTemplateWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\CategoryTemplate; use Orm\Zed\Category\Persistence\SpyCategoryTemplateQuery; @@ -36,8 +38,10 @@ public function execute(DataSetInterface $dataSet): void $categoryTemplateEntity->setTemplatePath($dataSet[static::KEY_PATH]); - if ($categoryTemplateEntity->isNew() || $categoryTemplateEntity->isModified()) { - $categoryTemplateEntity->save(); + if (!$categoryTemplateEntity->isNew() && !$categoryTemplateEntity->isModified()) { + return; } + + $categoryTemplateEntity->save(); } } diff --git a/src/Pyz/Zed/DataImport/Business/Model/CmsBlock/CmsBlockWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/CmsBlock/CmsBlockWriterStep.php index 5165fac1de..76d5a30e88 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/CmsBlock/CmsBlockWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/CmsBlock/CmsBlockWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\CmsBlock; use Orm\Zed\CmsBlock\Persistence\SpyCmsBlock; diff --git a/src/Pyz/Zed/DataImport/Business/Model/CmsBlockStore/CmsBlockStoreWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/CmsBlockStore/CmsBlockStoreWriterStep.php index 123cbcd00b..9b53568919 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/CmsBlockStore/CmsBlockStoreWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/CmsBlockStore/CmsBlockStoreWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\CmsBlockStore; use Orm\Zed\CmsBlock\Persistence\SpyCmsBlockQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/CmsTemplate/CmsTemplateWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/CmsTemplate/CmsTemplateWriterStep.php index 0ea3627679..2f58a68324 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/CmsTemplate/CmsTemplateWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/CmsTemplate/CmsTemplateWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\CmsTemplate; use Orm\Zed\Cms\Persistence\SpyCmsTemplateQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepository.php b/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepository.php index 28b136556d..c6c35185b0 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepository.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepository.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Country\Repository; use ArrayObject; @@ -27,7 +29,7 @@ public function __construct() * * @return bool */ - public function hasCountryByName($countryName): bool + public function hasCountryByName(string $countryName): bool { if ($this->countryIds->count() === 0) { $this->loadCountries(); @@ -41,7 +43,7 @@ public function hasCountryByName($countryName): bool * * @return int */ - public function getIdCountryByName($countryName): int + public function getIdCountryByName(string $countryName): int { if ($this->countryIds->count() === 0) { $this->loadCountries(); diff --git a/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepositoryInterface.php b/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepositoryInterface.php index 083f2fd673..41b7ecb3ac 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepositoryInterface.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Country/Repository/CountryRepositoryInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Country\Repository; interface CountryRepositoryInterface @@ -14,12 +16,12 @@ interface CountryRepositoryInterface * * @return bool */ - public function hasCountryByName($countryName): bool; + public function hasCountryByName(string $countryName): bool; /** * @param string $countryName * * @return int */ - public function getIdCountryByName($countryName): int; + public function getIdCountryByName(string $countryName): int; } diff --git a/src/Pyz/Zed/DataImport/Business/Model/Currency/CurrencyWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Currency/CurrencyWriterStep.php index 7ff97b0d42..24a20ae2fb 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Currency/CurrencyWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Currency/CurrencyWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Currency; use Orm\Zed\Currency\Persistence\SpyCurrencyQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Customer/CustomerWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Customer/CustomerWriterStep.php index 726c285075..c6de301f92 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Customer/CustomerWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Customer/CustomerWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Customer; use Orm\Zed\Customer\Persistence\SpyCustomerQuery; @@ -40,10 +42,12 @@ public function execute(DataSetInterface $dataSet): void ->findOneOrCreate(); $currentId = $this->getCurrentId($dataSet); - if ($currentId > $sequenceNumberEntity->getCurrentId()) { - $sequenceNumberEntity->setCurrentId($currentId); - $sequenceNumberEntity->save(); + if ($currentId <= $sequenceNumberEntity->getCurrentId()) { + return; } + + $sequenceNumberEntity->setCurrentId($currentId); + $sequenceNumberEntity->save(); } /** diff --git a/src/Pyz/Zed/DataImport/Business/Model/DataImporterConditional.php b/src/Pyz/Zed/DataImport/Business/Model/DataImporterConditional.php index 7e01801801..ecd849fa3f 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/DataImporterConditional.php +++ b/src/Pyz/Zed/DataImport/Business/Model/DataImporterConditional.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model; use Generated\Shared\Transfer\DataImporterReportTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/DataImporterDataSetWriterAwareConditional.php b/src/Pyz/Zed/DataImport/Business/Model/DataImporterDataSetWriterAwareConditional.php index 9e08720e04..842660e352 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/DataImporterDataSetWriterAwareConditional.php +++ b/src/Pyz/Zed/DataImport/Business/Model/DataImporterDataSetWriterAwareConditional.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model; use Generated\Shared\Transfer\DataImporterReportTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/DataSet/DataSetConditionInterface.php b/src/Pyz/Zed/DataImport/Business/Model/DataSet/DataSetConditionInterface.php index 161d2caaea..2908066269 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/DataSet/DataSetConditionInterface.php +++ b/src/Pyz/Zed/DataImport/Business/Model/DataSet/DataSetConditionInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\DataSet; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Discount/DiscountWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Discount/DiscountWriterStep.php index 6e5c78d971..fb51f9f078 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Discount/DiscountWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Discount/DiscountWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Discount; use DateTime; @@ -152,7 +154,7 @@ public function execute(DataSetInterface $dataSet): void * * @return string */ - protected function processQueryString($queryString): string + protected function processQueryString(string $queryString): string { $queryString = $this->convertShipmentCarrierNameToId($queryString); $queryString = $this->convertShipmentMethodNameToId($queryString); @@ -165,7 +167,7 @@ protected function processQueryString($queryString): string * * @return string */ - protected function convertShipmentMethodNameToId($queryString): string + protected function convertShipmentMethodNameToId(string $queryString): string { $shipmentConditionValues = $this->extractConditionValuesWithShipmentCarrierMethodNames($queryString); @@ -182,7 +184,7 @@ protected function convertShipmentMethodNameToId($queryString): string * * @return string */ - protected function convertShipmentCarrierNameToId($queryString): string + protected function convertShipmentCarrierNameToId(string $queryString): string { $shipmentCarrierNames = $this->extractConditionValueWithShipmentCarrierNames($queryString); @@ -202,7 +204,7 @@ protected function convertShipmentCarrierNameToId($queryString): string * * @return array */ - protected function extractConditionValuesWithShipmentCarrierMethodNames($queryString): array + protected function extractConditionValuesWithShipmentCarrierMethodNames(string $queryString): array { $shipmentMethodNames = []; preg_match_all('/shipment-method = "([\w \(\)]*)"/', $queryString, $shipmentMethodNames); @@ -216,7 +218,7 @@ protected function extractConditionValuesWithShipmentCarrierMethodNames($querySt * * @return array */ - protected function extractConditionValueWithShipmentCarrierNames($queryString): array + protected function extractConditionValueWithShipmentCarrierNames(string $queryString): array { $shipmentCarrierNames = []; preg_match_all('/shipment-carrier = "([\w \(\)]*)"/', $queryString, $shipmentCarrierNames); @@ -230,7 +232,7 @@ protected function extractConditionValueWithShipmentCarrierNames($queryString): * * @return \Orm\Zed\Shipment\Persistence\SpyShipmentMethod */ - protected function findShipmentMethodByConditionValue($conditionValue): SpyShipmentMethod + protected function findShipmentMethodByConditionValue(string $conditionValue): SpyShipmentMethod { $shipmentCarrierNameMatches = []; preg_match_all('/([\w ]+)\(([\w ]+)\)/', $conditionValue, $shipmentCarrierNameMatches); @@ -238,14 +240,12 @@ protected function findShipmentMethodByConditionValue($conditionValue): SpyShipm $shipmentMethodName = empty($shipmentCarrierNameMatches[1][0]) ? $conditionValue : trim($shipmentCarrierNameMatches[1][0]); $shipmentCarrierName = empty($shipmentCarrierNameMatches[2][0]) ? '' : trim($shipmentCarrierNameMatches[2][0]); - $spyShipmentMethod = SpyShipmentMethodQuery::create() + return SpyShipmentMethodQuery::create() ->filterByName($shipmentMethodName) ->useShipmentCarrierQuery() ->filterByName($shipmentCarrierName) ->endUse() ->findOne(); - - return $spyShipmentMethod; } /** diff --git a/src/Pyz/Zed/DataImport/Business/Model/DiscountAmount/DiscountAmountWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/DiscountAmount/DiscountAmountWriterStep.php index 3aac5947f9..346e8c917f 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/DiscountAmount/DiscountAmountWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/DiscountAmount/DiscountAmountWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\DiscountAmount; use Orm\Zed\Currency\Persistence\SpyCurrency; @@ -77,7 +79,7 @@ public function execute(DataSetInterface $dataSet): void * * @return \Orm\Zed\Currency\Persistence\SpyCurrency */ - protected function getCurrencyByCode($currencyCode): SpyCurrency + protected function getCurrencyByCode(string $currencyCode): SpyCurrency { if (isset(static::$currencyCache[$currencyCode])) { return static::$currencyCache[$currencyCode]; diff --git a/src/Pyz/Zed/DataImport/Business/Model/DiscountStore/DiscountStoreWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/DiscountStore/DiscountStoreWriterStep.php index 52d25cb3fa..ba2fba202f 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/DiscountStore/DiscountStoreWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/DiscountStore/DiscountStoreWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\DiscountStore; use Orm\Zed\Discount\Persistence\SpyDiscountQuery; @@ -59,7 +61,7 @@ public function execute(DataSetInterface $dataSet): void * * @return int */ - protected function getIdDiscountByKey($discountKey): int + protected function getIdDiscountByKey(string $discountKey): int { if (!isset(static::$idDiscountBuffer[$discountKey])) { static::$idDiscountBuffer[$discountKey] = @@ -74,7 +76,7 @@ protected function getIdDiscountByKey($discountKey): int * * @return int */ - protected function getIdStoreByName($storeName): int + protected function getIdStoreByName(string $storeName): int { if (!isset(static::$idStoreBuffer[$storeName])) { static::$idStoreBuffer[$storeName] = diff --git a/src/Pyz/Zed/DataImport/Business/Model/DiscountVoucher/DiscountVoucherWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/DiscountVoucher/DiscountVoucherWriterStep.php index 824243e2ae..3f1f84eb4f 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/DiscountVoucher/DiscountVoucherWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/DiscountVoucher/DiscountVoucherWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\DiscountVoucher; use Orm\Zed\Discount\Persistence\SpyDiscount; @@ -86,7 +88,7 @@ public function execute(DataSetInterface $dataSet): void $voucherBatch = $dataSet[static::KEY_VOUCHER_BATCH]; - if ($this->voucherBatchExists($discountEntity, $voucherBatch)) { + if ($this->voucherBatchExists($discountEntity, (int)$voucherBatch)) { return; } @@ -116,7 +118,7 @@ public function execute(DataSetInterface $dataSet): void * * @return bool */ - protected function voucherBatchExists(SpyDiscount $discountEntity, $voucherBatch): bool + protected function voucherBatchExists(SpyDiscount $discountEntity, int $voucherBatch): bool { $query = SpyDiscountVoucherQuery::create() ->filterByFkDiscountVoucherPool($discountEntity->getFkDiscountVoucherPool()) @@ -132,7 +134,7 @@ protected function voucherBatchExists(SpyDiscount $discountEntity, $voucherBatch * * @return array */ - protected function generateCodes($length, $quantity, $customCode = null): array + protected function generateCodes(int $length, int $quantity, ?string $customCode = null): array { $codesToGenerate = []; @@ -159,7 +161,7 @@ protected function generateCodes($length, $quantity, $customCode = null): array * * @return string */ - protected function addCustomCodeToGenerated($customCode, $code): string + protected function addCustomCodeToGenerated(string $customCode, string $code): string { $replacementString = $this->discountConfig->getVoucherPoolTemplateReplacementString(); @@ -179,7 +181,7 @@ protected function addCustomCodeToGenerated($customCode, $code): string * * @return bool */ - protected function voucherCodeExists($code): bool + protected function voucherCodeExists(string $code): bool { return (SpyDiscountVoucherQuery::create()->filterByCode($code)->count() > 0); } @@ -189,7 +191,7 @@ protected function voucherCodeExists($code): bool * * @return string */ - protected function getRandomVoucherCode($length): string + protected function getRandomVoucherCode(int $length): string { $allowedCharacters = $this->discountConfig->getVoucherCodeCharacters(); @@ -208,9 +210,11 @@ protected function getRandomVoucherCode($length): string $code .= $vowels[random_int(0, count($vowels) - 1)]; } - if (count($numbers)) { - $code .= $numbers[random_int(0, count($numbers) - 1)]; + if (!count($numbers)) { + continue; } + + $code .= $numbers[random_int(0, count($numbers) - 1)]; } return substr($code, 0, $length); diff --git a/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardAbstractConfigurationWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardAbstractConfigurationWriterStep.php index bfea2284bd..3ceec17054 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardAbstractConfigurationWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardAbstractConfigurationWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\GiftCard; use Orm\Zed\GiftCard\Persistence\SpyGiftCardProductAbstractConfigurationLinkQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardConcreteConfigurationWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardConcreteConfigurationWriterStep.php index b4ca75ffff..7e982384f2 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardConcreteConfigurationWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/GiftCard/GiftCardConcreteConfigurationWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\GiftCard; use Orm\Zed\GiftCard\Persistence\SpyGiftCardProductConfigurationLinkQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Glossary/GlossaryWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Glossary/GlossaryWriterStep.php index c4c9ff36ae..2296b3e7d7 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Glossary/GlossaryWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Glossary/GlossaryWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Glossary; use Orm\Zed\Glossary\Persistence\SpyGlossaryKeyQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Locale/AddLocalesStep.php b/src/Pyz/Zed/DataImport/Business/Model/Locale/AddLocalesStep.php index ac56a0b13a..b778143ac2 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Locale/AddLocalesStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Locale/AddLocalesStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Locale; use Spryker\Zed\DataImport\Business\Model\DataImportStep\AddLocalesStep as SprykerAddLocalesStep; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Locale/LocaleNameToIdLocaleStep.php b/src/Pyz/Zed/DataImport/Business/Model/Locale/LocaleNameToIdLocaleStep.php index 305a6cdc47..503612b2f7 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Locale/LocaleNameToIdLocaleStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Locale/LocaleNameToIdLocaleStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Locale; use Orm\Zed\Locale\Persistence\SpyLocaleQuery; @@ -44,7 +46,7 @@ class LocaleNameToIdLocaleStep implements DataImportStepInterface * @param string $source * @param string $target */ - public function __construct($source = self::KEY_SOURCE, $target = self::KEY_TARGET) + public function __construct(string $source = self::KEY_SOURCE, string $target = self::KEY_TARGET) { $this->source = $source; $this->target = $target; @@ -83,7 +85,7 @@ public function execute(DataSetInterface $dataSet): void * * @return int */ - protected function resolveIdLocale($localeName): int + protected function resolveIdLocale(string $localeName): int { $query = SpyLocaleQuery::create(); $localeEntity = $query->filterByLocaleName($localeName)->findOne(); diff --git a/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepository.php b/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepository.php index 52d3eb3104..ae2218da9a 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepository.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepository.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Locale\Repository; use Orm\Zed\Locale\Persistence\Map\SpyLocaleTableMap; @@ -22,7 +24,7 @@ class LocaleRepository implements LocaleRepositoryInterface * * @return int */ - public function getIdLocaleByLocale($locale): int + public function getIdLocaleByLocale(string $locale): int { if (!static::$localeMap) { $this->loadLocaleMap(); diff --git a/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepositoryInterface.php b/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepositoryInterface.php index 203d0053fc..77f3be8086 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepositoryInterface.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Locale/Repository/LocaleRepositoryInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Locale\Repository; interface LocaleRepositoryInterface @@ -14,5 +16,5 @@ interface LocaleRepositoryInterface * * @return int */ - public function getIdLocaleByLocale($locale): int; + public function getIdLocaleByLocale(string $locale): int; } diff --git a/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationKeyToIdNavigationStep.php b/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationKeyToIdNavigationStep.php index 78b5817798..6e66de8b2e 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationKeyToIdNavigationStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationKeyToIdNavigationStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Navigation; use Orm\Zed\Navigation\Persistence\SpyNavigationQuery; @@ -44,7 +46,7 @@ class NavigationKeyToIdNavigationStep implements DataImportStepInterface * @param string $source * @param string $target */ - public function __construct($source = self::KEY_SOURCE, $target = self::KEY_TARGET) + public function __construct(string $source = self::KEY_SOURCE, string $target = self::KEY_TARGET) { $this->source = $source; $this->target = $target; @@ -83,7 +85,7 @@ public function execute(DataSetInterface $dataSet): void * * @return int */ - protected function resolveIdNavigation($navigationKey): int + protected function resolveIdNavigation(string $navigationKey): int { $navigationEntity = SpyNavigationQuery::create() ->findOneByKey($navigationKey); diff --git a/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationWriterStep.php index dc10afb68d..3eaf2cc0e5 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Navigation/NavigationWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Navigation; use Orm\Zed\Navigation\Persistence\SpyNavigation; diff --git a/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeValidityDatesStep.php b/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeValidityDatesStep.php index b420b1e85e..ba576a3481 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeValidityDatesStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeValidityDatesStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\NavigationNode; use Pyz\Zed\DataImport\Business\Exception\NavigationNodeValidityDateException; @@ -27,7 +29,7 @@ class NavigationNodeValidityDatesStep implements DataImportStepInterface * @param string $keyValidFrom * @param string $keyValidTo */ - public function __construct($keyValidFrom, $keyValidTo) + public function __construct(string $keyValidFrom, string $keyValidTo) { $this->keyValidFrom = $keyValidFrom; $this->keyValidTo = $keyValidTo; @@ -53,7 +55,7 @@ public function execute(DataSetInterface $dataSet): void * * @return void */ - protected function filterDate(DataSetInterface $dataSet, $key): void + protected function filterDate(DataSetInterface $dataSet, string $key): void { if (isset($dataSet[$key])) { return; @@ -70,7 +72,7 @@ protected function filterDate(DataSetInterface $dataSet, $key): void * * @return void */ - protected function formatDate(DataSetInterface $dataSet, $key): void + protected function formatDate(DataSetInterface $dataSet, string $key): void { if ($dataSet[$key] === '') { return; diff --git a/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeWriterStep.php index 0bfdc6dfdd..c0784f8cec 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/NavigationNode/NavigationNodeWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\NavigationNode; use Orm\Zed\Navigation\Persistence\SpyNavigationNode; @@ -174,7 +176,7 @@ public function execute(DataSetInterface $dataSet): void * * @return int */ - protected function getFkParentNavigationNode($nodeKey): int + protected function getFkParentNavigationNode(string $nodeKey): int { $parentNavigationNodeEntity = SpyNavigationNodeQuery::create() ->findOneByNodeKey($nodeKey); @@ -295,7 +297,7 @@ protected function getExternalUrl( protected function getFkUrl( SpyNavigationNodeLocalizedAttributes $navigationNodeLocalizedAttributes, array $localizedAttributes, - $idLocale, + int $idLocale, ): ?int { if (isset($localizedAttributes[static::KEY_URL]) && !empty($localizedAttributes[static::KEY_URL])) { $urlEntity = SpyUrlQuery::create() diff --git a/src/Pyz/Zed/DataImport/Business/Model/Product/AttributesExtractorStep.php b/src/Pyz/Zed/DataImport/Business/Model/Product/AttributesExtractorStep.php index 36c4adb7a2..8b9a3b70ae 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Product/AttributesExtractorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Product/AttributesExtractorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Product; use Spryker\Zed\DataImport\Business\Model\DataImportStep\DataImportStepInterface; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Product/ProductLocalizedAttributesExtractorStep.php b/src/Pyz/Zed/DataImport/Business/Model/Product/ProductLocalizedAttributesExtractorStep.php index fce4c5b918..689ad5b736 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Product/ProductLocalizedAttributesExtractorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Product/ProductLocalizedAttributesExtractorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Product; use Spryker\Zed\DataImport\Business\Model\DataImportStep\DataImportStepInterface; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepository.php b/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepository.php index c24d2ba26a..44d6e4cf9e 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepository.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepository.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Product\Repository; use Generated\Shared\Transfer\PaginationTransfer; @@ -44,7 +46,7 @@ class ProductRepository implements ProductRepositoryInterface * * @return int */ - public function getIdProductByConcreteSku($sku): int + public function getIdProductByConcreteSku(string $sku): int { if (!isset(static::$resolved[$sku])) { $this->resolveProductByConcreteSku($sku); @@ -58,7 +60,7 @@ public function getIdProductByConcreteSku($sku): int * * @return string */ - public function getAbstractSkuByConcreteSku($sku): string + public function getAbstractSkuByConcreteSku(string $sku): string { if (!isset(static::$resolved[$sku])) { $this->resolveProductByConcreteSku($sku); @@ -72,7 +74,7 @@ public function getAbstractSkuByConcreteSku($sku): string * * @return int */ - public function getIdProductAbstractByAbstractSku($sku): int + public function getIdProductAbstractByAbstractSku(string $sku): int { if (!isset(static::$resolved[$sku])) { $this->resolveProductByAbstractSku($sku); @@ -131,7 +133,7 @@ public function getProductConcreteAttributesCollection(PaginationTransfer $pagin * * @return void */ - private function resolveProductByConcreteSku($sku): void + private function resolveProductByConcreteSku(string $sku): void { $productEntity = SpyProductQuery::create() ->joinWithSpyProductAbstract() @@ -154,7 +156,7 @@ private function resolveProductByConcreteSku($sku): void * * @return void */ - private function resolveProductByAbstractSku($sku): void + private function resolveProductByAbstractSku(string $sku): void { $productAbstractEntity = SpyProductAbstractQuery::create() ->findOneBySku($sku); @@ -186,7 +188,7 @@ public function addProductAbstract(SpyProductAbstract $productAbstractEntity): v * * @return void */ - public function addProductConcrete(SpyProduct $productEntity, $abstractSku = null): void + public function addProductConcrete(SpyProduct $productEntity, ?string $abstractSku = null): void { static::$resolved[$productEntity->getSku()] = [ static::ID_PRODUCT => $productEntity->getIdProduct(), diff --git a/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepositoryInterface.php b/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepositoryInterface.php index 3a56844234..4a5d093fc0 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepositoryInterface.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Product/Repository/ProductRepositoryInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Product\Repository; use Generated\Shared\Transfer\PaginationTransfer; @@ -19,21 +21,21 @@ interface ProductRepositoryInterface * * @return int */ - public function getIdProductByConcreteSku($sku): int; + public function getIdProductByConcreteSku(string $sku): int; /** * @param string $sku * * @return string */ - public function getAbstractSkuByConcreteSku($sku): string; + public function getAbstractSkuByConcreteSku(string $sku): string; /** * @param string $sku * * @return int */ - public function getIdProductAbstractByAbstractSku($sku): int; + public function getIdProductAbstractByAbstractSku(string $sku): int; /** * @return array @@ -65,7 +67,7 @@ public function addProductAbstract(SpyProductAbstract $productAbstractEntity): v * * @return void */ - public function addProductConcrete(SpyProduct $productEntity, $abstractSku = null): void; + public function addProductConcrete(SpyProduct $productEntity, ?string $abstractSku = null): void; /** * @return void diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddCategoryKeysStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddCategoryKeysStep.php index 9e605b8a53..e08d883583 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddCategoryKeysStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddCategoryKeysStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstract; use Orm\Zed\Category\Persistence\SpyCategoryQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddProductAbstractSkusStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddProductAbstractSkusStep.php index 93487a84ba..1da384be6b 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddProductAbstractSkusStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/AddProductAbstractSkusStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstract; use Orm\Zed\Product\Persistence\Map\SpyProductAbstractTableMap; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractCheckExistenceStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractCheckExistenceStep.php index 58c19f04e5..ed89a29aa9 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractCheckExistenceStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractCheckExistenceStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstract; use Pyz\Zed\DataImport\Business\Exception\InvalidSkuProductException; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractHydratorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractHydratorStep.php index 0cc2045b20..722cc38274 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstract; use Generated\Shared\Transfer\SpyProductAbstractEntityTransfer; @@ -315,7 +317,7 @@ protected function importProductUrls(DataSetInterface $dataSet): void * * @return array */ - protected function getCategoryKeys($categoryKeys): array + protected function getCategoryKeys(string $categoryKeys): array { $categoryKeys = explode(',', $categoryKeys); @@ -327,7 +329,7 @@ protected function getCategoryKeys($categoryKeys): array * * @return array */ - protected function getCategoryProductOrder($categoryProductOrder): array + protected function getCategoryProductOrder(string $categoryProductOrder): array { $categoryProductOrder = explode(',', $categoryProductOrder); @@ -342,13 +344,17 @@ protected function getCategoryProductOrder($categoryProductOrder): array protected function formatMultiSelectProductAttributes(array $attributes): array { foreach ($attributes as $key => $value) { - if (is_string($value) && preg_match('/^\[.*\]$/', $value)) { - $json = str_replace("'", '"', $value); - $decoded = json_decode($json, true); - if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) { - $attributes[$key] = $decoded; - } + if (!is_string($value) || !preg_match('/^\[.*\]$/', $value)) { + continue; + } + + $json = str_replace("'", '"', $value); + $decoded = json_decode($json, true); + if (json_last_error() !== JSON_ERROR_NONE || !is_array($decoded)) { + continue; } + + $attributes[$key] = $decoded; } return $attributes; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractSkuToIdProductAbstractStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractSkuToIdProductAbstractStep.php index af045912ce..537e724127 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractSkuToIdProductAbstractStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/ProductAbstractSkuToIdProductAbstractStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstract; use Orm\Zed\Product\Persistence\SpyProductAbstractQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/Writer/ProductAbstractPropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/Writer/ProductAbstractPropelDataSetWriter.php index 43735e4041..f2d97455d3 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/Writer/ProductAbstractPropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstract/Writer/ProductAbstractPropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstract\Writer; use Generated\Shared\Transfer\SpyProductAbstractEntityTransfer; @@ -104,9 +106,11 @@ protected function createOrUpdateProductAbstractLocalizedAbstract( $productAbstractLocalizedAttributesEntity->fromArray($productAbstractLocalizedTransfer->modifiedToArray()); - if ($productAbstractLocalizedAttributesEntity->isNew() || $productAbstractLocalizedAttributesEntity->isModified()) { - $productAbstractLocalizedAttributesEntity->save(); + if (!$productAbstractLocalizedAttributesEntity->isNew() && !$productAbstractLocalizedAttributesEntity->isModified()) { + continue; } + + $productAbstractLocalizedAttributesEntity->save(); } } @@ -130,12 +134,14 @@ protected function createOrUpdateProductCategories(DataSetInterface $dataSet, in $productCategoryEntity->fromArray($productCategoryTransfer->modifiedToArray()); - if ($productCategoryEntity->isNew() || $productCategoryEntity->isModified()) { - $productCategoryEntity->save(); - - DataImporterPublisher::addEvent(ProductCategoryEvents::PRODUCT_CATEGORY_PUBLISH, $idProductAbstract); - DataImporterPublisher::addEvent(ProductEvents::PRODUCT_ABSTRACT_PUBLISH, $idProductAbstract); + if (!$productCategoryEntity->isNew() && !$productCategoryEntity->isModified()) { + continue; } + + $productCategoryEntity->save(); + + DataImporterPublisher::addEvent(ProductCategoryEvents::PRODUCT_CATEGORY_PUBLISH, $idProductAbstract); + DataImporterPublisher::addEvent(ProductEvents::PRODUCT_ABSTRACT_PUBLISH, $idProductAbstract); } } @@ -164,11 +170,13 @@ protected function createOrUpdateProductUrls(DataSetInterface $dataSet, int $idP $urlEntity->fromArray($productUrlTransfer->modifiedToArray()); - if ($urlEntity->isNew() || $urlEntity->isModified()) { - $urlEntity->save(); - - DataImporterPublisher::addEvent(UrlEvents::URL_PUBLISH, $urlEntity->getIdUrl()); + if (!$urlEntity->isNew() && !$urlEntity->isModified()) { + continue; } + + $urlEntity->save(); + + DataImporterPublisher::addEvent(UrlEvents::URL_PUBLISH, $urlEntity->getIdUrl()); } } diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/ProductAbstractStoreHydratorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/ProductAbstractStoreHydratorStep.php index ad0339ce75..afce482f84 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/ProductAbstractStoreHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/ProductAbstractStoreHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstractStore; use Generated\Shared\Transfer\ProductAbstractStoreTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/Writer/ProductAbstractStorePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/Writer/ProductAbstractStorePropelDataSetWriter.php index 77cc40a18f..50b9f4a663 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/Writer/ProductAbstractStorePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAbstractStore/Writer/ProductAbstractStorePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAbstractStore\Writer; use Generated\Shared\Transfer\ProductAbstractStoreTransfer; @@ -62,7 +64,7 @@ protected function createOrUpdateProductAbstractStore(DataSetInterface $dataSet) * * @return int */ - protected function getIdProductAbstractBySku($productAbstractSku): int + protected function getIdProductAbstractBySku(string $productAbstractSku): int { if (!isset(static::$idProductAbstractBuffer[$productAbstractSku])) { static::$idProductAbstractBuffer[$productAbstractSku] = @@ -77,7 +79,7 @@ protected function getIdProductAbstractBySku($productAbstractSku): int * * @return int */ - protected function getIdStoreByName($storeName): int + protected function getIdStoreByName(string $storeName): int { if (!isset(static::$idStoreBuffer[$storeName])) { static::$idStoreBuffer[$storeName] = diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/AddProductAttributeKeysStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/AddProductAttributeKeysStep.php index cc7b9bd941..9a637458d8 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/AddProductAttributeKeysStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/AddProductAttributeKeysStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAttributeKey; use Orm\Zed\Product\Persistence\Map\SpyProductAttributeKeyTableMap; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/ProductAttributeKeyWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/ProductAttributeKeyWriter.php index 05fd45e4c1..7b228765c1 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/ProductAttributeKeyWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductAttributeKey/ProductAttributeKeyWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductAttributeKey; use Orm\Zed\Product\Persistence\SpyProductAttributeKeyQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteAttributesUniqueCheckStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteAttributesUniqueCheckStep.php index f6ea85eef4..a68ace57b8 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteAttributesUniqueCheckStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteAttributesUniqueCheckStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductConcrete; use Generated\Shared\Transfer\PaginationTransfer; @@ -129,7 +131,7 @@ protected function checkProductConcreteAttributesUnique( } foreach (static::$productConcreteAttributesMap[$dataSetProductAbstractSku] as $productConcreteSku => $productConcreteAttributes) { - if ($dataSetProductConcreteSku == $productConcreteSku) { + if ($dataSetProductConcreteSku === $productConcreteSku) { continue; } diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteCheckExistenceStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteCheckExistenceStep.php index 0614839975..640e68e427 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteCheckExistenceStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteCheckExistenceStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductConcrete; use Pyz\Zed\DataImport\Business\Exception\InvalidSkuProductException; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteHydratorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteHydratorStep.php index 771a9d17b7..e10f518efb 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductConcreteHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductConcrete; use Generated\Shared\Transfer\SpyProductBundleEntityTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductSkuToIdProductStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductSkuToIdProductStep.php index a718c0a177..c326f0ff4e 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductSkuToIdProductStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/ProductSkuToIdProductStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductConcrete; use Orm\Zed\Product\Persistence\SpyProductQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/Writer/ProductConcretePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/Writer/ProductConcretePropelDataSetWriter.php index 44bb0610e1..b04ddcac3d 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/Writer/ProductConcretePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductConcrete/Writer/ProductConcretePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductConcrete\Writer; use Generated\Shared\Transfer\EventEntityTransfer; @@ -131,14 +133,18 @@ protected function createOrUpdateBundles(DataSetInterface $dataSet, int $idProdu ->findOneOrCreate(); $productBundleEntity->fromArray($productBundle[ProductConcreteHydratorStep::KEY_PRODUCT_BUNDLE_TRANSFER]->modifiedToArray()); - if ($productBundleEntity->isNew() || $productBundleEntity->isModified()) { - $productBundleEntity->save(); + if (!$productBundleEntity->isNew() && !$productBundleEntity->isModified()) { + continue; } + + $productBundleEntity->save(); } - if ($productBundleData) { - DataImporterPublisher::addEvent(static::PRODUCT_BUNDLE_PUBLISH, $idProduct); + if (!$productBundleData) { + return; } + + DataImporterPublisher::addEvent(static::PRODUCT_BUNDLE_PUBLISH, $idProduct); } /** @@ -188,15 +194,17 @@ protected function createOrUpdateProductConcreteSearchEntities( $productSearchEntity->fromArray($productSearchEntityTransfer->modifiedToArray()); $isNewProductSearchEntity = $productSearchEntity->isNew(); - if ($isNewProductSearchEntity || $productSearchEntity->isModified()) { - $productSearchEntity->save(); - $eventEntityTransfer = $this->mapProductSearchEntityToEventEntityTransfer( - $productSearchEntity, - $isNewProductSearchEntity, - new EventEntityTransfer(), - ); - DataImporterPublisher::addEvent($eventEntityTransfer->getEvent(), $eventEntityTransfer->getId(), $eventEntityTransfer); + if (!$isNewProductSearchEntity && !$productSearchEntity->isModified()) { + return; } + + $productSearchEntity->save(); + $eventEntityTransfer = $this->mapProductSearchEntityToEventEntityTransfer( + $productSearchEntity, + $isNewProductSearchEntity, + new EventEntityTransfer(), + ); + DataImporterPublisher::addEvent($eventEntityTransfer->getEvent(), $eventEntityTransfer->getId(), $eventEntityTransfer); } /** diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductGroup/ProductGroupWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductGroup/ProductGroupWriter.php index a38b54ec00..a34332c9c2 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductGroup/ProductGroupWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductGroup/ProductGroupWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductGroup; use Orm\Zed\ProductGroup\Persistence\SpyProductAbstractGroupQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/ProductImageHydratorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/ProductImageHydratorStep.php index a33a821612..3359d388fa 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/ProductImageHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/ProductImageHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductImage; use Generated\Shared\Transfer\SpyLocaleEntityTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepository.php b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepository.php index cf0c99bbd5..132a573ba8 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepository.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepository.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductImage\Repository; use Orm\Zed\ProductImage\Persistence\SpyProductImage; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepositoryInterface.php b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepositoryInterface.php index c08ad34ac3..520e6da480 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepositoryInterface.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Repository/ProductImageRepositoryInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductImage\Repository; use Orm\Zed\ProductImage\Persistence\SpyProductImage; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Writer/ProductImagePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Writer/ProductImagePropelDataSetWriter.php index 018154dd55..f9d9aaeab6 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Writer/ProductImagePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductImage/Writer/ProductImagePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductImage\Writer; use Generated\Shared\Transfer\SpyProductImageEntityTransfer; @@ -128,11 +130,13 @@ protected function createOrUpdateImageToImageSetRelation( $productImageToImageSetRelationTransfer = $this->getProductImageToImageSetRelationTransfer($dataSet); $productImageSetToProductImageEntity->setSortOrder($productImageToImageSetRelationTransfer->getSortOrder()); - if ($productImageSetToProductImageEntity->isNew() || $productImageSetToProductImageEntity->isModified()) { - $productImageSetToProductImageEntity->save(); - - $this->addImagePublishEvents($productImageSetEntity); + if (!$productImageSetToProductImageEntity->isNew() && !$productImageSetToProductImageEntity->isModified()) { + return; } + + $productImageSetToProductImageEntity->save(); + + $this->addImagePublishEvents($productImageSetEntity); } /** diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementAttributeWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementAttributeWriter.php index 2d8107dbe2..a2639a1fba 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementAttributeWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementAttributeWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductManagementAttribute; use Orm\Zed\Glossary\Persistence\SpyGlossaryKeyQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementLocalizedAttributesExtractorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementLocalizedAttributesExtractorStep.php index 8cb64abe5f..8e88f01913 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementLocalizedAttributesExtractorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductManagementAttribute/ProductManagementLocalizedAttributesExtractorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductManagementAttribute; use Pyz\Zed\DataImport\Business\Model\Locale\AddLocalesStep; @@ -55,7 +57,7 @@ public function execute(DataSetInterface $dataSet): void * * @return array */ - private function toArray($data): array + private function toArray(string $data): array { return array_map('trim', explode(',', $data)); } diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductOption/ProductOptionWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductOption/ProductOptionWriterStep.php index d041d6158e..ae7a2d5502 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductOption/ProductOptionWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductOption/ProductOptionWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductOption; use Orm\Zed\Glossary\Persistence\SpyGlossaryKeyQuery; @@ -147,7 +149,7 @@ protected function isActive(DataSetInterface $dataSet, SpyProductOptionGroup $pr * * @return void */ - protected function findOrCreateTranslation($key, $translation, $idLocale): void + protected function findOrCreateTranslation(string $key, string $translation, int $idLocale): void { $glossaryKeyEntity = SpyGlossaryKeyQuery::create() ->filterByKey($key) diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductOptionPrice/ProductOptionPriceWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductOptionPrice/ProductOptionPriceWriterStep.php index a35cbac988..99d86d203a 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductOptionPrice/ProductOptionPriceWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductOptionPrice/ProductOptionPriceWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductOptionPrice; use Orm\Zed\Currency\Persistence\SpyCurrencyQuery; @@ -97,7 +99,7 @@ public function execute(DataSetInterface $dataSet): void * * @return void */ - protected function publishRelatedProductAbstracts($idProductOptionValue): void + protected function publishRelatedProductAbstracts(int $idProductOptionValue): void { $productAbstractCollection = SpyProductAbstractQuery::create() ->joinSpyProductAbstractProductOptionGroup() @@ -122,7 +124,7 @@ protected function publishRelatedProductAbstracts($idProductOptionValue): void * * @return int|null */ - protected function getIdStore($storeName): ?int + protected function getIdStore(?string $storeName): ?int { if ($storeName === '' || $storeName === null) { return null; @@ -141,7 +143,7 @@ protected function getIdStore($storeName): ?int * * @return int */ - protected function getIdCurrency($currencyIsoCode): int + protected function getIdCurrency(string $currencyIsoCode): int { if (!isset(static::$idCurrencyBuffer[$currencyIsoCode])) { static::$idCurrencyBuffer[$currencyIsoCode] = SpyCurrencyQuery::create() diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/ProductPriceHydratorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/ProductPriceHydratorStep.php index d89d70cec8..851d0385b1 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/ProductPriceHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/ProductPriceHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductPrice; use Generated\Shared\Transfer\SpyCurrencyEntityTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/Writer/ProductPricePropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/Writer/ProductPricePropelDataSetWriter.php index cdc0d55633..4af95025ff 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/Writer/ProductPricePropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductPrice/Writer/ProductPricePropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductPrice\Writer; use Orm\Zed\PriceProduct\Persistence\Base\SpyPriceProduct; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductReview/ProductReviewWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductReview/ProductReviewWriterStep.php index d38b4154f0..cdbf088f25 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductReview/ProductReviewWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductReview/ProductReviewWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductReview; use Orm\Zed\ProductReview\Persistence\Map\SpyProductReviewTableMap; @@ -57,14 +59,16 @@ public function execute(DataSetInterface $dataSet): void $productReviewEntity->fromArray($dataSet->getArrayCopy()); - if ($productReviewEntity->isNew() || $productReviewEntity->isModified()) { - $productReviewEntity->save(); + if (!$productReviewEntity->isNew() && !$productReviewEntity->isModified()) { + return; + } + + $productReviewEntity->save(); - if ($productReviewEntity->getStatus() === SpyProductReviewTableMap::COL_STATUS_APPROVED) { - $this->addPublishEvents(ProductReviewEvents::PRODUCT_REVIEW_PUBLISH, $productReviewEntity->getIdProductReview()); - } - $this->addPublishEvents(ProductReviewEvents::PRODUCT_ABSTRACT_REVIEW_PUBLISH, $productReviewEntity->getFkProductAbstract()); + if ($productReviewEntity->getStatus() === SpyProductReviewTableMap::COL_STATUS_APPROVED) { + $this->addPublishEvents(ProductReviewEvents::PRODUCT_REVIEW_PUBLISH, $productReviewEntity->getIdProductReview()); } + $this->addPublishEvents(ProductReviewEvents::PRODUCT_ABSTRACT_REVIEW_PUBLISH, $productReviewEntity->getFkProductAbstract()); } /** diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/Hook/ProductSearchAfterImportHook.php b/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/Hook/ProductSearchAfterImportHook.php index 4a10e6200a..a8179c4f01 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/Hook/ProductSearchAfterImportHook.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/Hook/ProductSearchAfterImportHook.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductSearchAttribute\Hook; use Spryker\Zed\DataImport\Business\Model\DataImporterAfterImportInterface; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/ProductSearchAttributeWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/ProductSearchAttributeWriter.php index 25377faafb..53a9deb4fa 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/ProductSearchAttributeWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttribute/ProductSearchAttributeWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductSearchAttribute; use Orm\Zed\Glossary\Persistence\SpyGlossaryKeyQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttributeMap/ProductSearchAttributeMapWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttributeMap/ProductSearchAttributeMapWriter.php index 4a46192b69..7165e92caa 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttributeMap/ProductSearchAttributeMapWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductSearchAttributeMap/ProductSearchAttributeMapWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductSearchAttributeMap; use Generated\Shared\Search\PageIndexMap; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetImageExtractorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetImageExtractorStep.php index 0b019061f0..b9bf561ef2 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetImageExtractorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetImageExtractorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductSet; use Spryker\Zed\DataImport\Business\Model\DataImportStep\DataImportStepInterface; @@ -41,20 +43,24 @@ public function execute(DataSetInterface $dataSet): void { $imageSets = []; foreach ($dataSet as $key => $value) { - if (preg_match('/' . static::IMAGE_SET_KEY_PREFIX . '(\d+)/', $key, $match)) { - $imageSets[$match[1]] = [ - 'image_set' => $value, - 'images' => [], - ]; + if (!preg_match('/' . static::IMAGE_SET_KEY_PREFIX . '(\d+)/', $key, $match)) { + continue; } + + $imageSets[$match[1]] = [ + 'image_set' => $value, + 'images' => [], + ]; } foreach ($dataSet as $key => $value) { if (preg_match('/' . static::IMAGE_SMALL_KEY_PREFIX . '(\d+).(\d+)/', $key, $match)) { $imageSets[$match[1]]['images'][$match[2]]['image_small'] = $value; } - if (preg_match('/' . static::IMAGE_LARGE_KEY_PREFIX . '(\d+).(\d+)/', $key, $match)) { - $imageSets[$match[1]]['images'][$match[2]]['image_large'] = $value; + if (!preg_match('/' . static::IMAGE_LARGE_KEY_PREFIX . '(\d+).(\d+)/', $key, $match)) { + continue; } + + $imageSets[$match[1]]['images'][$match[2]]['image_large'] = $value; } $dataSet[static::KEY_TARGET] = $imageSets; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetWriterStep.php index 76b05b8a06..8811ea6544 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductSet/ProductSetWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductSet; use Orm\Zed\ProductImage\Persistence\SpyProductImageQuery; @@ -173,11 +175,13 @@ protected function findOrCreateProductAbstractSet(DataSetInterface $dataSet, Spy $position++; $productAbstractSetEntity->setPosition($position); - if ($productAbstractSetEntity->isNew() || $productAbstractSetEntity->isModified()) { - $productAbstractSetEntity->save(); - - $this->addPublishEvents(ProductEvents::PRODUCT_ABSTRACT_PUBLISH, $idProductAbstract); + if (!$productAbstractSetEntity->isNew() && !$productAbstractSetEntity->isModified()) { + continue; } + + $productAbstractSetEntity->save(); + + $this->addPublishEvents(ProductEvents::PRODUCT_ABSTRACT_PUBLISH, $idProductAbstract); } } @@ -217,10 +221,12 @@ protected function findOrCreateProductSetData(DataSetInterface $dataSet, SpyProd $productSetUrlEntity->setUrl($localizedAttributes[static::KEY_URL]); - if ($productSetUrlEntity->isNew() || $productSetUrlEntity->isModified()) { - $productSetUrlEntity->save(); - $this->addPublishEvents(UrlEvents::URL_PUBLISH, $productSetUrlEntity->getIdUrl()); + if (!$productSetUrlEntity->isNew() && !$productSetUrlEntity->isModified()) { + continue; } + + $productSetUrlEntity->save(); + $this->addPublishEvents(UrlEvents::URL_PUBLISH, $productSetUrlEntity->getIdUrl()); } } @@ -260,9 +266,11 @@ protected function findOrCreateProductImageSet(DataSetInterface $dataSet, SpyPro $productImageSetToProductImageEntity->setSortOrder(0); - if ($productImageSetToProductImageEntity->isNew() || $productImageSetToProductImageEntity->isModified()) { - $productImageSetToProductImageEntity->save(); + if (!$productImageSetToProductImageEntity->isNew() && !$productImageSetToProductImageEntity->isModified()) { + continue; } + + $productImageSetToProductImageEntity->save(); } } } diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Hook/ProductStockAfterImportPublishHook.php b/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Hook/ProductStockAfterImportPublishHook.php index 78653f1a04..d77f5e4c6e 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Hook/ProductStockAfterImportPublishHook.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Hook/ProductStockAfterImportPublishHook.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductStock\Hook; use Orm\Zed\Availability\Persistence\Map\SpyAvailabilityAbstractTableMap; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductStock/ProductStockHydratorStep.php b/src/Pyz/Zed/DataImport/Business/Model/ProductStock/ProductStockHydratorStep.php index 73dc5b0bb9..176c6b5c64 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductStock/ProductStockHydratorStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductStock/ProductStockHydratorStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductStock; use Generated\Shared\Transfer\SpyStockEntityTransfer; diff --git a/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Writer/ProductStockPropelDataSetWriter.php b/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Writer/ProductStockPropelDataSetWriter.php index 015d65cd5b..fb2617a2d2 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Writer/ProductStockPropelDataSetWriter.php +++ b/src/Pyz/Zed/DataImport/Business/Model/ProductStock/Writer/ProductStockPropelDataSetWriter.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\ProductStock\Writer; use Generated\Shared\Transfer\StoreTransfer; @@ -493,7 +495,7 @@ protected function updateAbstractAvailabilityQuantity( ->findOne(); $availabilityAbstractEntity->setFkStore($idStore); - $availabilityAbstractEntity->setQuantity($sumQuantity); + $availabilityAbstractEntity->setQuantity((string)$sumQuantity); $availabilityAbstractEntity->save(); return $availabilityAbstractEntity; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Stock/StockWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Stock/StockWriterStep.php index 765e1d26dc..6539e3edc9 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Stock/StockWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Stock/StockWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Stock; use Orm\Zed\Stock\Persistence\SpyStockQuery; diff --git a/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxSetNameToIdTaxSetStep.php b/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxSetNameToIdTaxSetStep.php index 5a33c1664d..0bc78436a0 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxSetNameToIdTaxSetStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxSetNameToIdTaxSetStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Tax; use Orm\Zed\Tax\Persistence\SpyTaxSetQuery; @@ -43,7 +45,7 @@ class TaxSetNameToIdTaxSetStep implements DataImportStepInterface * @param string $source * @param string $target */ - public function __construct($source = self::KEY_SOURCE, $target = self::KEY_TARGET) + public function __construct(string $source = self::KEY_SOURCE, string $target = self::KEY_TARGET) { $this->source = $source; $this->target = $target; @@ -78,7 +80,7 @@ public function execute(DataSetInterface $dataSet): void * * @return int */ - protected function resolveIdStock($taxSetName): int + protected function resolveIdStock(string $taxSetName): int { $taxSetEntity = SpyTaxSetQuery::create() ->filterByName($taxSetName) diff --git a/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxWriterStep.php b/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxWriterStep.php index e07b143a2c..78855d67e4 100644 --- a/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxWriterStep.php +++ b/src/Pyz/Zed/DataImport/Business/Model/Tax/TaxWriterStep.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Business\Model\Tax; use Orm\Zed\Shipment\Persistence\SpyShipmentMethodQuery; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstract/CombinedProductAbstractPropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstract/CombinedProductAbstractPropelWriterPlugin.php index 38e5f8188d..7b8099ecf5 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstract/CombinedProductAbstractPropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstract/CombinedProductAbstractPropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\CombinedProduct\ProductAbstract; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStorePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStorePropelWriterPlugin.php index d4a857aadc..be868161db 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStorePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductAbstractStore/CombinedProductAbstractStorePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\CombinedProduct\ProductAbstractStore; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductConcrete/CombinedProductConcretePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductConcrete/CombinedProductConcretePropelWriterPlugin.php index 54a45cf39a..c96fb9d235 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductConcrete/CombinedProductConcretePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductConcrete/CombinedProductConcretePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\CombinedProduct\ProductConcrete; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductImage/CombinedProductImagePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductImage/CombinedProductImagePropelWriterPlugin.php index 3c1afd6ea0..bdebf916ab 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductImage/CombinedProductImagePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductImage/CombinedProductImagePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\CombinedProduct\ProductImage; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductPrice/CombinedProductPricePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductPrice/CombinedProductPricePropelWriterPlugin.php index 4c11c4473f..34a49f4230 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductPrice/CombinedProductPricePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductPrice/CombinedProductPricePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\CombinedProduct\ProductPrice; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductStock/CombinedProductStockPropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductStock/CombinedProductStockPropelWriterPlugin.php index 958c2f6510..a47ac2daa1 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductStock/CombinedProductStockPropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/CombinedProduct/ProductStock/CombinedProductStockPropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\CombinedProduct\ProductStock; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstract/ProductAbstractPropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstract/ProductAbstractPropelWriterPlugin.php index a1a6b8f03d..8e485c324e 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstract/ProductAbstractPropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstract/ProductAbstractPropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\ProductAbstract; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstractStore/ProductAbstractStorePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstractStore/ProductAbstractStorePropelWriterPlugin.php index db89ca9b12..72a5375170 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstractStore/ProductAbstractStorePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductAbstractStore/ProductAbstractStorePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\ProductAbstractStore; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductConcrete/ProductConcretePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductConcrete/ProductConcretePropelWriterPlugin.php index caad5378e5..6e12723893 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductConcrete/ProductConcretePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductConcrete/ProductConcretePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\ProductConcrete; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductImage/ProductImagePropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductImage/ProductImagePropelWriterPlugin.php index aff1f8a1ce..7cbac2e8f4 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductImage/ProductImagePropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductImage/ProductImagePropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\ProductImage; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductStock/ProductStockPropelWriterPlugin.php b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductStock/ProductStockPropelWriterPlugin.php index d5a702a36e..f3c1000ad7 100644 --- a/src/Pyz/Zed/DataImport/Communication/Plugin/ProductStock/ProductStockPropelWriterPlugin.php +++ b/src/Pyz/Zed/DataImport/Communication/Plugin/ProductStock/ProductStockPropelWriterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport\Communication\Plugin\ProductStock; use Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface; diff --git a/src/Pyz/Zed/DataImport/DataImportConfig.php b/src/Pyz/Zed/DataImport/DataImportConfig.php index b4b6f7b965..5c6ef8aa3d 100644 --- a/src/Pyz/Zed/DataImport/DataImportConfig.php +++ b/src/Pyz/Zed/DataImport/DataImportConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport; use Spryker\Zed\DataImport\DataImportConfig as SprykerDataImportConfig; diff --git a/src/Pyz/Zed/DataImport/DataImportDependencyProvider.php b/src/Pyz/Zed/DataImport/DataImportDependencyProvider.php index 4689cf47a4..2f8fe4c056 100644 --- a/src/Pyz/Zed/DataImport/DataImportDependencyProvider.php +++ b/src/Pyz/Zed/DataImport/DataImportDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DataImport; use Spryker\Zed\CategoryDataImport\Communication\Plugin\CategoryDataImportPlugin; diff --git a/src/Pyz/Zed/Development/Communication/Console/AcceptanceCodeTestConsole.php b/src/Pyz/Zed/Development/Communication/Console/AcceptanceCodeTestConsole.php index cafd9aa36e..a228b29bf4 100644 --- a/src/Pyz/Zed/Development/Communication/Console/AcceptanceCodeTestConsole.php +++ b/src/Pyz/Zed/Development/Communication/Console/AcceptanceCodeTestConsole.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Development\Communication\Console; use Spryker\Zed\Development\Communication\Console\CodeTestConsole; diff --git a/src/Pyz/Zed/Development/Communication/Console/ApiCodeTestConsole.php b/src/Pyz/Zed/Development/Communication/Console/ApiCodeTestConsole.php index 27cfb73369..f8c0f22884 100644 --- a/src/Pyz/Zed/Development/Communication/Console/ApiCodeTestConsole.php +++ b/src/Pyz/Zed/Development/Communication/Console/ApiCodeTestConsole.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Development\Communication\Console; use Spryker\Zed\Development\Communication\Console\CodeTestConsole; diff --git a/src/Pyz/Zed/Development/Communication/Console/FunctionalCodeTestConsole.php b/src/Pyz/Zed/Development/Communication/Console/FunctionalCodeTestConsole.php index 1b5d53e2ec..23388ccd0b 100644 --- a/src/Pyz/Zed/Development/Communication/Console/FunctionalCodeTestConsole.php +++ b/src/Pyz/Zed/Development/Communication/Console/FunctionalCodeTestConsole.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Development\Communication\Console; use Spryker\Zed\Development\Communication\Console\CodeTestConsole; diff --git a/src/Pyz/Zed/Development/DevelopmentConfig.php b/src/Pyz/Zed/Development/DevelopmentConfig.php index 6e640f4cd9..18aef1477e 100644 --- a/src/Pyz/Zed/Development/DevelopmentConfig.php +++ b/src/Pyz/Zed/Development/DevelopmentConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Development; use Spryker\Zed\Development\DevelopmentConfig as SprykerDevelopmentConfig; diff --git a/src/Pyz/Zed/Discount/DiscountConfig.php b/src/Pyz/Zed/Discount/DiscountConfig.php index 57458cded3..b1b7828ce7 100644 --- a/src/Pyz/Zed/Discount/DiscountConfig.php +++ b/src/Pyz/Zed/Discount/DiscountConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Discount; use Spryker\Zed\Discount\DiscountConfig as SprykerDiscountConfig; diff --git a/src/Pyz/Zed/Discount/DiscountDependencyProvider.php b/src/Pyz/Zed/Discount/DiscountDependencyProvider.php index 43014f6385..a38fd59753 100644 --- a/src/Pyz/Zed/Discount/DiscountDependencyProvider.php +++ b/src/Pyz/Zed/Discount/DiscountDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Discount; use Spryker\Zed\CategoryDiscountConnector\Communication\Plugin\Discount\CategoryDecisionRulePlugin; diff --git a/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiConfig.php b/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiConfig.php index 711bab15fd..40d777daec 100644 --- a/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiConfig.php +++ b/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DocumentationGeneratorRestApi; use Spryker\Zed\DocumentationGeneratorRestApi\DocumentationGeneratorRestApiConfig as SprykerDocumentationGeneratorRestApiConfig; diff --git a/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiDependencyProvider.php b/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiDependencyProvider.php index b5f0bae2d7..586f44f59e 100644 --- a/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiDependencyProvider.php +++ b/src/Pyz/Zed/DocumentationGeneratorRestApi/DocumentationGeneratorRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DocumentationGeneratorRestApi; use Spryker\Glue\GlueApplication\Plugin\DocumentationGeneratorRestApi\ResourceRelationshipCollectionProviderPlugin; diff --git a/src/Pyz/Zed/DynamicEntity/DynamicEntityConfig.php b/src/Pyz/Zed/DynamicEntity/DynamicEntityConfig.php index 6dd935e4d8..2f6b613fc6 100644 --- a/src/Pyz/Zed/DynamicEntity/DynamicEntityConfig.php +++ b/src/Pyz/Zed/DynamicEntity/DynamicEntityConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DynamicEntity; use Spryker\Zed\DynamicEntity\DynamicEntityConfig as SprykerDynamicEntityConfig; diff --git a/src/Pyz/Zed/DynamicEntity/DynamicEntityDependencyProvider.php b/src/Pyz/Zed/DynamicEntity/DynamicEntityDependencyProvider.php index af9c090d0d..4a8b486984 100644 --- a/src/Pyz/Zed/DynamicEntity/DynamicEntityDependencyProvider.php +++ b/src/Pyz/Zed/DynamicEntity/DynamicEntityDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\DynamicEntity; use Spryker\Zed\Availability\Communication\Plugin\DynamicEntity\AvailabilityDynamicEntityPostCreatePlugin; diff --git a/src/Pyz/Zed/ErrorHandler/ErrorHandlerConfig.php b/src/Pyz/Zed/ErrorHandler/ErrorHandlerConfig.php index e64e9f25c1..95ae50b6d8 100644 --- a/src/Pyz/Zed/ErrorHandler/ErrorHandlerConfig.php +++ b/src/Pyz/Zed/ErrorHandler/ErrorHandlerConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ErrorHandler; use Spryker\Zed\ErrorHandler\ErrorHandlerConfig as SprykerErrorHandlerConfigAlias; diff --git a/src/Pyz/Zed/ErrorHandler/ErrorHandlerDependencyProvider.php b/src/Pyz/Zed/ErrorHandler/ErrorHandlerDependencyProvider.php index ff4e55cd2f..e9ec48664c 100644 --- a/src/Pyz/Zed/ErrorHandler/ErrorHandlerDependencyProvider.php +++ b/src/Pyz/Zed/ErrorHandler/ErrorHandlerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ErrorHandler; use Spryker\Zed\ErrorHandler\Communication\Plugin\ExceptionHandler\SubRequestExceptionHandlerStrategyPlugin; diff --git a/src/Pyz/Zed/Event/EventConfig.php b/src/Pyz/Zed/Event/EventConfig.php index 07bf9b3e44..14c01c21d5 100644 --- a/src/Pyz/Zed/Event/EventConfig.php +++ b/src/Pyz/Zed/Event/EventConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Event; use Monolog\Logger; diff --git a/src/Pyz/Zed/Event/EventDependencyProvider.php b/src/Pyz/Zed/Event/EventDependencyProvider.php index 6c58b8d17c..ffcad36023 100644 --- a/src/Pyz/Zed/Event/EventDependencyProvider.php +++ b/src/Pyz/Zed/Event/EventDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Event; use Pyz\Zed\ProductStorage\Communication\Plugin\Event\Subscriber\ProductStorageEventSubscriber; diff --git a/src/Pyz/Zed/EventBehavior/EventBehaviorDependencyProvider.php b/src/Pyz/Zed/EventBehavior/EventBehaviorDependencyProvider.php index 4d6cb96317..ed838a70b5 100644 --- a/src/Pyz/Zed/EventBehavior/EventBehaviorDependencyProvider.php +++ b/src/Pyz/Zed/EventBehavior/EventBehaviorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\EventBehavior; use Spryker\Zed\AvailabilityStorage\Communication\Plugin\Event\AvailabilityEventResourceQueryContainerPlugin; diff --git a/src/Pyz/Zed/EventDispatcher/EventDispatcherDependencyProvider.php b/src/Pyz/Zed/EventDispatcher/EventDispatcherDependencyProvider.php index c8e2354fa2..c784f10c3c 100644 --- a/src/Pyz/Zed/EventDispatcher/EventDispatcherDependencyProvider.php +++ b/src/Pyz/Zed/EventDispatcher/EventDispatcherDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\EventDispatcher; use Spryker\Shared\Http\Plugin\EventDispatcher\ResponseListenerEventDispatcherPlugin; diff --git a/src/Pyz/Zed/ExampleChart/Plugin/ExampleChartPlugin.php b/src/Pyz/Zed/ExampleChart/Plugin/ExampleChartPlugin.php index 9f4879c1f9..5b9818ddb9 100644 --- a/src/Pyz/Zed/ExampleChart/Plugin/ExampleChartPlugin.php +++ b/src/Pyz/Zed/ExampleChart/Plugin/ExampleChartPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleChart\Plugin; use Generated\Shared\Transfer\ChartDataTraceTransfer; @@ -33,7 +35,7 @@ public function getName(): string * * @return \Generated\Shared\Transfer\ChartDataTransfer */ - public function getChartData($dataIdentifier = null): ChartDataTransfer + public function getChartData($dataIdentifier = null): ChartDataTransfer // phpcs:ignore { $data = new ChartDataTransfer(); $data->setTitle('test'); diff --git a/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageBusinessFactory.php b/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageBusinessFactory.php index 6afed3baf0..596d7e41a4 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageBusinessFactory.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageBusinessFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Business; use Pyz\Zed\ExampleProductSalePage\Business\Label\ProductAbstractRelationReader; diff --git a/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacade.php b/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacade.php index 31f1e3acd5..c9c850f663 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacade.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacade.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Business; use Spryker\Zed\Product\Business\ProductFacade as SprykerProductFacade; diff --git a/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacadeInterface.php b/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacadeInterface.php index 3c176c056c..5b4e17f328 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacadeInterface.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Business/ExampleProductSalePageFacadeInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Business; interface ExampleProductSalePageFacadeInterface diff --git a/src/Pyz/Zed/ExampleProductSalePage/Business/Exception/ProductLabelSaleNotFoundException.php b/src/Pyz/Zed/ExampleProductSalePage/Business/Exception/ProductLabelSaleNotFoundException.php index 47a39d648d..b9607615c3 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Business/Exception/ProductLabelSaleNotFoundException.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Business/Exception/ProductLabelSaleNotFoundException.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Business\Exception; use Exception; diff --git a/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReader.php b/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReader.php index c41617496b..d39ccf510b 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReader.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReader.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Business\Label; use Generated\Shared\Transfer\ProductLabelProductAbstractRelationsTransfer; @@ -173,7 +175,7 @@ protected function findRelationsBecomingActive(SpyProductLabel $productLabelEnti * @return \Generated\Shared\Transfer\ProductLabelProductAbstractRelationsTransfer */ protected function mapRelationTransfer( - $idProductLabel, + int $idProductLabel, array $relationsToAssign, array $relationsToDeAssign, ): ProductLabelProductAbstractRelationsTransfer { diff --git a/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReaderInterface.php b/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReaderInterface.php index 5c46f4efe5..1462fbba36 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReaderInterface.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Business/Label/ProductAbstractRelationReaderInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Business\Label; interface ProductAbstractRelationReaderInterface diff --git a/src/Pyz/Zed/ExampleProductSalePage/Communication/Plugin/ExampleProductSalePageLabelUpdaterPlugin.php b/src/Pyz/Zed/ExampleProductSalePage/Communication/Plugin/ExampleProductSalePageLabelUpdaterPlugin.php index 4d273df8c5..f047edd36c 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Communication/Plugin/ExampleProductSalePageLabelUpdaterPlugin.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Communication/Plugin/ExampleProductSalePageLabelUpdaterPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Communication\Plugin; use Spryker\Zed\Kernel\Communication\AbstractPlugin; diff --git a/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageConfig.php b/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageConfig.php index 0fb132b6ca..4eba338a5c 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageConfig.php +++ b/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage; use Pyz\Shared\ExampleProductSalePage\ExampleProductSalePageConfig as SharedExampleProductSalePageConfig; diff --git a/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php b/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php index 790b3e2b11..5f7962b68e 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php +++ b/src/Pyz/Zed/ExampleProductSalePage/ExampleProductSalePageDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage; use Spryker\Zed\Kernel\AbstractBundleDependencyProvider; diff --git a/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePagePersistenceFactory.php b/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePagePersistenceFactory.php index ff883815c8..cf43e6f87e 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePagePersistenceFactory.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePagePersistenceFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Persistence; use Pyz\Zed\ExampleProductSalePage\ExampleProductSalePageDependencyProvider; diff --git a/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainer.php b/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainer.php index e56d375d5b..45cb3abd1f 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainer.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainer.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Persistence; use Orm\Zed\Product\Persistence\SpyProductAbstractQuery; @@ -53,7 +55,7 @@ class ExampleProductSalePageQueryContainer extends AbstractQueryContainer implem * * @return \Orm\Zed\ProductLabel\Persistence\SpyProductLabelQuery */ - public function queryProductLabelByName($labelName): SpyProductLabelQuery + public function queryProductLabelByName(string $labelName): SpyProductLabelQuery { return $this->getFactory() ->getProductLabelQueryContainer() diff --git a/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainerInterface.php b/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainerInterface.php index cb7412b1eb..65f88ed026 100644 --- a/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainerInterface.php +++ b/src/Pyz/Zed/ExampleProductSalePage/Persistence/ExampleProductSalePageQueryContainerInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleProductSalePage\Persistence; use Orm\Zed\Product\Persistence\SpyProductAbstractQuery; @@ -23,7 +25,7 @@ interface ExampleProductSalePageQueryContainerInterface * * @return \Orm\Zed\ProductLabel\Persistence\SpyProductLabelQuery */ - public function queryProductLabelByName($labelName): SpyProductLabelQuery; + public function queryProductLabelByName(string $labelName): SpyProductLabelQuery; /** * @api diff --git a/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineBusinessFactory.php b/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineBusinessFactory.php index 1f5d237667..23a3bfdab9 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineBusinessFactory.php +++ b/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineBusinessFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Business; use Pyz\Zed\ExampleStateMachine\Business\Model\ExampleStateMachineItemReader; diff --git a/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacade.php b/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacade.php index 15543c0196..216412acb1 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacade.php +++ b/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacade.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Business; use Generated\Shared\Transfer\StateMachineItemTransfer; diff --git a/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacadeInterface.php b/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacadeInterface.php index 776899476b..95620823ff 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacadeInterface.php +++ b/src/Pyz/Zed/ExampleStateMachine/Business/ExampleStateMachineFacadeInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Business; use Generated\Shared\Transfer\StateMachineItemTransfer; diff --git a/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemReader.php b/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemReader.php index 55a9cf548d..4c899011e8 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemReader.php +++ b/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemReader.php @@ -5,9 +5,12 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Business\Model; use Generated\Shared\Transfer\StateMachineItemTransfer; +use Propel\Runtime\Collection\ObjectCollection; use Pyz\Zed\ExampleStateMachine\Persistence\ExampleStateMachineQueryContainerInterface; class ExampleStateMachineItemReader @@ -58,7 +61,7 @@ public function getStateMachineItems(): array * * @return array<\Generated\Shared\Transfer\StateMachineItemTransfer> */ - protected function hydrateTransferFromPersistence($exampleStateMachineItems): array + protected function hydrateTransferFromPersistence(ObjectCollection $exampleStateMachineItems): array { $stateMachineItems = []; foreach ($exampleStateMachineItems as $exampleStateMachineItemEntity) { diff --git a/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemSaver.php b/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemSaver.php index ecaf8c036f..6327bd40fe 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemSaver.php +++ b/src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemSaver.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Business\Model; use Generated\Shared\Transfer\StateMachineItemTransfer; diff --git a/src/Pyz/Zed/ExampleStateMachine/Communication/Controller/TestController.php b/src/Pyz/Zed/ExampleStateMachine/Communication/Controller/TestController.php index 759ee471df..0f2fd26fd8 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Communication/Controller/TestController.php +++ b/src/Pyz/Zed/ExampleStateMachine/Communication/Controller/TestController.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Communication\Controller; use Spryker\Zed\Kernel\Communication\Controller\AbstractController; diff --git a/src/Pyz/Zed/ExampleStateMachine/Communication/ExampleStateMachineCommunicationFactory.php b/src/Pyz/Zed/ExampleStateMachine/Communication/ExampleStateMachineCommunicationFactory.php index 9cd2cd4794..1dd897a41a 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Communication/ExampleStateMachineCommunicationFactory.php +++ b/src/Pyz/Zed/ExampleStateMachine/Communication/ExampleStateMachineCommunicationFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Communication; use Pyz\Zed\ExampleStateMachine\ExampleStateMachineDependencyProvider; diff --git a/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Command/TestCommandPlugin.php b/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Command/TestCommandPlugin.php index 3fe3922987..14feeb4208 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Command/TestCommandPlugin.php +++ b/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Command/TestCommandPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Communication\Plugin\Command; use Generated\Shared\Transfer\StateMachineItemTransfer; @@ -23,7 +25,7 @@ class TestCommandPlugin extends AbstractPlugin implements CommandPluginInterface * * @return bool */ - public function run(StateMachineItemTransfer $stateMachineItemTransfer): bool + public function run(StateMachineItemTransfer $stateMachineItemTransfer): bool // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return true; } diff --git a/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Condition/TestConditionPlugin.php b/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Condition/TestConditionPlugin.php index b9dc4aa0ae..5061b055f6 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Condition/TestConditionPlugin.php +++ b/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/Condition/TestConditionPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Communication\Plugin\Condition; use Generated\Shared\Transfer\StateMachineItemTransfer; diff --git a/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/TestStateMachineHandlerPlugin.php b/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/TestStateMachineHandlerPlugin.php index 77e65ef108..6fd23bcb11 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/TestStateMachineHandlerPlugin.php +++ b/src/Pyz/Zed/ExampleStateMachine/Communication/Plugin/TestStateMachineHandlerPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Communication\Plugin; use Generated\Shared\Transfer\StateMachineItemTransfer; @@ -76,7 +78,7 @@ public function getActiveProcesses(): array * * @return string */ - public function getInitialStateForProcess($processName): string + public function getInitialStateForProcess($processName): string // phpcs:ignore { switch ($processName) { case 'Invoice01': diff --git a/src/Pyz/Zed/ExampleStateMachine/ExampleStateMachineDependencyProvider.php b/src/Pyz/Zed/ExampleStateMachine/ExampleStateMachineDependencyProvider.php index 1e8784e5ff..46c2ec704c 100644 --- a/src/Pyz/Zed/ExampleStateMachine/ExampleStateMachineDependencyProvider.php +++ b/src/Pyz/Zed/ExampleStateMachine/ExampleStateMachineDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine; use Spryker\Zed\Kernel\AbstractBundleDependencyProvider; diff --git a/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachinePersistenceFactory.php b/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachinePersistenceFactory.php index f5d2261f41..3f25dad09e 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachinePersistenceFactory.php +++ b/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachinePersistenceFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Persistence; use Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItemQuery; diff --git a/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainer.php b/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainer.php index 14f5bf8c79..eb54cccb9a 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainer.php +++ b/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainer.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Persistence; use Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItemQuery; @@ -52,7 +54,7 @@ public function queryAllStateMachineItems(): ObjectCollection * @return \Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItemQuery<\Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItem> */ public function queryExampleStateMachineItemByIdStateMachineItem( - $idStateMachineItem, + int $idStateMachineItem, ): ExampleStateMachineItemQuery { return $this->getFactory() ->createExampleStateMachineQuery() diff --git a/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainerInterface.php b/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainerInterface.php index 5f59f8fd70..5e7dc79776 100644 --- a/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainerInterface.php +++ b/src/Pyz/Zed/ExampleStateMachine/Persistence/ExampleStateMachineQueryContainerInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ExampleStateMachine\Persistence; use Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItemQuery; @@ -36,6 +38,6 @@ public function queryAllStateMachineItems(): ObjectCollection; * @return \Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItemQuery<\Orm\Zed\ExampleStateMachine\Persistence\ExampleStateMachineItem> */ public function queryExampleStateMachineItemByIdStateMachineItem( - $idStateMachineItem, + int $idStateMachineItem, ): ExampleStateMachineItemQuery; } diff --git a/src/Pyz/Zed/FileManagerGui/FileManagerGuiConfig.php b/src/Pyz/Zed/FileManagerGui/FileManagerGuiConfig.php index fe648bc67a..8a0e009794 100644 --- a/src/Pyz/Zed/FileManagerGui/FileManagerGuiConfig.php +++ b/src/Pyz/Zed/FileManagerGui/FileManagerGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\FileManagerGui; use Spryker\Zed\FileManagerGui\FileManagerGuiConfig as SprykerFileManagerGuiConfig; diff --git a/src/Pyz/Zed/FileManagerStorage/FileManagerStorageConfig.php b/src/Pyz/Zed/FileManagerStorage/FileManagerStorageConfig.php index 393407bb62..fca7ac7e40 100644 --- a/src/Pyz/Zed/FileManagerStorage/FileManagerStorageConfig.php +++ b/src/Pyz/Zed/FileManagerStorage/FileManagerStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\FileManagerStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Flysystem/FlysystemDependencyProvider.php b/src/Pyz/Zed/Flysystem/FlysystemDependencyProvider.php index 95ac1f17d5..c0206b023d 100644 --- a/src/Pyz/Zed/Flysystem/FlysystemDependencyProvider.php +++ b/src/Pyz/Zed/Flysystem/FlysystemDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Flysystem; use Spryker\Service\Flysystem\FlysystemDependencyProvider as SprykerFlysystemDependencyProvider; diff --git a/src/Pyz/Zed/Form/FormDependencyProvider.php b/src/Pyz/Zed/Form/FormDependencyProvider.php index db4498d00a..e7ff31372e 100644 --- a/src/Pyz/Zed/Form/FormDependencyProvider.php +++ b/src/Pyz/Zed/Form/FormDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Form; use Spryker\Zed\Form\Communication\Plugin\Form\CsrfFormPlugin; diff --git a/src/Pyz/Zed/GiftCard/GiftCardConfig.php b/src/Pyz/Zed/GiftCard/GiftCardConfig.php index e52f000171..eaf93743eb 100644 --- a/src/Pyz/Zed/GiftCard/GiftCardConfig.php +++ b/src/Pyz/Zed/GiftCard/GiftCardConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\GiftCard; use Spryker\Shared\DummyPayment\DummyPaymentConfig; diff --git a/src/Pyz/Zed/GiftCard/GiftCardDependencyProvider.php b/src/Pyz/Zed/GiftCard/GiftCardDependencyProvider.php index 0a0cc64992..f68f07d3e1 100644 --- a/src/Pyz/Zed/GiftCard/GiftCardDependencyProvider.php +++ b/src/Pyz/Zed/GiftCard/GiftCardDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\GiftCard; use Spryker\Zed\GiftCard\Dependency\Plugin\GiftCardValueProviderPluginInterface; diff --git a/src/Pyz/Zed/GlossaryStorage/GlossaryStorageConfig.php b/src/Pyz/Zed/GlossaryStorage/GlossaryStorageConfig.php index 3536ff9c87..c0a1b21384 100644 --- a/src/Pyz/Zed/GlossaryStorage/GlossaryStorageConfig.php +++ b/src/Pyz/Zed/GlossaryStorage/GlossaryStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\GlossaryStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php b/src/Pyz/Zed/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php index d760f8b92f..7f1b72c401 100644 --- a/src/Pyz/Zed/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php +++ b/src/Pyz/Zed/GlueBackendApiApplicationAuthorizationConnector/GlueBackendApiApplicationAuthorizationConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\GlueBackendApiApplicationAuthorizationConnector; use Spryker\Glue\DynamicEntityBackendApi\Plugin\GlueBackendApiApplicationAuthorizationConnector\DynamicEntityProtectedPathCollectionExpanderPlugin; diff --git a/src/Pyz/Zed/HealthCheck/HealthCheckDependencyProvider.php b/src/Pyz/Zed/HealthCheck/HealthCheckDependencyProvider.php index 0f7589ea86..7f5698bf21 100644 --- a/src/Pyz/Zed/HealthCheck/HealthCheckDependencyProvider.php +++ b/src/Pyz/Zed/HealthCheck/HealthCheckDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\HealthCheck; use Spryker\Zed\HealthCheck\HealthCheckDependencyProvider as SprykerHealthCheckDependencyProvider; diff --git a/src/Pyz/Zed/Http/HttpDependencyProvider.php b/src/Pyz/Zed/Http/HttpDependencyProvider.php index c274b5e0e7..305e31c45b 100644 --- a/src/Pyz/Zed/Http/HttpDependencyProvider.php +++ b/src/Pyz/Zed/Http/HttpDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Http; use Spryker\Zed\Http\Communication\Plugin\Http\HIncludeRendererFragmentHandlerPlugin; diff --git a/src/Pyz/Zed/Installer/InstallerDependencyProvider.php b/src/Pyz/Zed/Installer/InstallerDependencyProvider.php index bb79281e01..e192fb2275 100644 --- a/src/Pyz/Zed/Installer/InstallerDependencyProvider.php +++ b/src/Pyz/Zed/Installer/InstallerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Installer; use Spryker\Zed\Acl\Communication\Plugin\AclInstallerPlugin; diff --git a/src/Pyz/Zed/KernelApp/KernelAppDependencyProvider.php b/src/Pyz/Zed/KernelApp/KernelAppDependencyProvider.php index c54f7b4d83..5fb0ad1406 100644 --- a/src/Pyz/Zed/KernelApp/KernelAppDependencyProvider.php +++ b/src/Pyz/Zed/KernelApp/KernelAppDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\KernelApp; use Spryker\Zed\KernelApp\KernelAppDependencyProvider as SprykerKernelAppDependencyProvider; diff --git a/src/Pyz/Zed/Locale/LocaleDependencyProvider.php b/src/Pyz/Zed/Locale/LocaleDependencyProvider.php index a9e7e3e597..344ead85a3 100644 --- a/src/Pyz/Zed/Locale/LocaleDependencyProvider.php +++ b/src/Pyz/Zed/Locale/LocaleDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Locale; use Spryker\Shared\LocaleExtension\Dependency\Plugin\LocalePluginInterface; diff --git a/src/Pyz/Zed/Log/Communication/Plugin/FilebeatLogListenerPlugin.php b/src/Pyz/Zed/Log/Communication/Plugin/FilebeatLogListenerPlugin.php index 08b509967e..493cdd9d85 100644 --- a/src/Pyz/Zed/Log/Communication/Plugin/FilebeatLogListenerPlugin.php +++ b/src/Pyz/Zed/Log/Communication/Plugin/FilebeatLogListenerPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Log\Communication\Plugin; use Spryker\Zed\Kernel\Communication\AbstractPlugin; diff --git a/src/Pyz/Zed/Log/LogDependencyProvider.php b/src/Pyz/Zed/Log/LogDependencyProvider.php index 2a6d92ec95..7f7c169c51 100644 --- a/src/Pyz/Zed/Log/LogDependencyProvider.php +++ b/src/Pyz/Zed/Log/LogDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Log; use Spryker\Zed\Log\Communication\Plugin\Handler\ExceptionStreamHandlerPlugin; diff --git a/src/Pyz/Zed/Mail/MailDependencyProvider.php b/src/Pyz/Zed/Mail/MailDependencyProvider.php index 6be6f04cf9..404a3b06ed 100644 --- a/src/Pyz/Zed/Mail/MailDependencyProvider.php +++ b/src/Pyz/Zed/Mail/MailDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Mail; use Spryker\Zed\AvailabilityNotification\Communication\Plugin\Mail\AvailabilityNotificationMailTypeBuilderPlugin; diff --git a/src/Pyz/Zed/MessageBroker/MessageBrokerConfig.php b/src/Pyz/Zed/MessageBroker/MessageBrokerConfig.php index e93231870d..f252f61d03 100644 --- a/src/Pyz/Zed/MessageBroker/MessageBrokerConfig.php +++ b/src/Pyz/Zed/MessageBroker/MessageBrokerConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\MessageBroker; use Spryker\Zed\MessageBroker\MessageBrokerConfig as SprykerMessageBrokerConfig; diff --git a/src/Pyz/Zed/MessageBroker/MessageBrokerDependencyProvider.php b/src/Pyz/Zed/MessageBroker/MessageBrokerDependencyProvider.php index 48619e6dcc..0e9df68d1b 100644 --- a/src/Pyz/Zed/MessageBroker/MessageBrokerDependencyProvider.php +++ b/src/Pyz/Zed/MessageBroker/MessageBrokerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\MessageBroker; use Spryker\Zed\Asset\Communication\Plugin\MessageBroker\AssetMessageHandlerPlugin; diff --git a/src/Pyz/Zed/MessageBrokerAws/MessageBrokerAwsDependencyProvider.php b/src/Pyz/Zed/MessageBrokerAws/MessageBrokerAwsDependencyProvider.php index 53d870d144..b42f3115cd 100644 --- a/src/Pyz/Zed/MessageBrokerAws/MessageBrokerAwsDependencyProvider.php +++ b/src/Pyz/Zed/MessageBrokerAws/MessageBrokerAwsDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\MessageBrokerAws; use Spryker\Zed\MessageBrokerAws\Communication\Plugin\MessageBrokerAws\Expander\ConsumerIdHttpChannelMessageReceiverRequestExpanderPlugin; diff --git a/src/Pyz/Zed/Messenger/MessengerDependencyProvider.php b/src/Pyz/Zed/Messenger/MessengerDependencyProvider.php index 1bd1be1648..ae67648e0d 100644 --- a/src/Pyz/Zed/Messenger/MessengerDependencyProvider.php +++ b/src/Pyz/Zed/Messenger/MessengerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Messenger; use Spryker\Zed\Glossary\Communication\Plugin\TranslationPlugin as GlossaryTranslationPlugin; diff --git a/src/Pyz/Zed/NavigationStorage/NavigationStorageConfig.php b/src/Pyz/Zed/NavigationStorage/NavigationStorageConfig.php index 937d7e8c66..62603f4b97 100644 --- a/src/Pyz/Zed/NavigationStorage/NavigationStorageConfig.php +++ b/src/Pyz/Zed/NavigationStorage/NavigationStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\NavigationStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Newsletter/NewsletterConfig.php b/src/Pyz/Zed/Newsletter/NewsletterConfig.php index 68cf864381..5f17041fd9 100644 --- a/src/Pyz/Zed/Newsletter/NewsletterConfig.php +++ b/src/Pyz/Zed/Newsletter/NewsletterConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Newsletter; use Spryker\Shared\Newsletter\NewsletterConstants; diff --git a/src/Pyz/Zed/Oauth/OauthDependencyProvider.php b/src/Pyz/Zed/Oauth/OauthDependencyProvider.php index 4799139f5a..a5aa795f31 100644 --- a/src/Pyz/Zed/Oauth/OauthDependencyProvider.php +++ b/src/Pyz/Zed/Oauth/OauthDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oauth; use Spryker\Glue\GlueBackendApiApplication\Plugin\Oauth\BackendScopeCollectorPlugin; diff --git a/src/Pyz/Zed/OauthClient/OauthClientConfig.php b/src/Pyz/Zed/OauthClient/OauthClientConfig.php index 2924861fa7..4e4bc1ee5c 100644 --- a/src/Pyz/Zed/OauthClient/OauthClientConfig.php +++ b/src/Pyz/Zed/OauthClient/OauthClientConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\OauthClient; use Spryker\Zed\OauthClient\OauthClientConfig as SprykerOauthClientConfig; diff --git a/src/Pyz/Zed/OauthClient/OauthClientDependencyProvider.php b/src/Pyz/Zed/OauthClient/OauthClientDependencyProvider.php index 920da156cb..efba8e5e72 100644 --- a/src/Pyz/Zed/OauthClient/OauthClientDependencyProvider.php +++ b/src/Pyz/Zed/OauthClient/OauthClientDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\OauthClient; use Spryker\Zed\OauthAuth0\Communication\Plugin\OauthClient\Auth0OauthAccessTokenProviderPlugin; diff --git a/src/Pyz/Zed/OauthUserConnector/OauthUserConnectorDependencyProvider.php b/src/Pyz/Zed/OauthUserConnector/OauthUserConnectorDependencyProvider.php index 3e8543b18f..5144dd34b4 100644 --- a/src/Pyz/Zed/OauthUserConnector/OauthUserConnectorDependencyProvider.php +++ b/src/Pyz/Zed/OauthUserConnector/OauthUserConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\OauthUserConnector; use Spryker\Zed\OauthUserConnector\Communication\Plugin\OauthUserConnector\BackofficeUserOauthScopeAuthorizationCheckerPlugin; diff --git a/src/Pyz/Zed/OauthWarehouse/OauthWarehouseConfig.php b/src/Pyz/Zed/OauthWarehouse/OauthWarehouseConfig.php index fac105865a..b3618ef90a 100644 --- a/src/Pyz/Zed/OauthWarehouse/OauthWarehouseConfig.php +++ b/src/Pyz/Zed/OauthWarehouse/OauthWarehouseConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\OauthWarehouse; use Spryker\Zed\OauthWarehouse\OauthWarehouseConfig as SprykerOauthWarehouseConfig; diff --git a/src/Pyz/Zed/OauthWarehouseUser/OauthWarehouseUserConfig.php b/src/Pyz/Zed/OauthWarehouseUser/OauthWarehouseUserConfig.php index cdf4446bc0..4fed87546d 100644 --- a/src/Pyz/Zed/OauthWarehouseUser/OauthWarehouseUserConfig.php +++ b/src/Pyz/Zed/OauthWarehouseUser/OauthWarehouseUserConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\OauthWarehouseUser; use Spryker\Zed\OauthWarehouseUser\OauthWarehouseUserConfig as SprykerOauthWarehouseUserConfig; diff --git a/src/Pyz/Zed/Oms/Business/Calculator/InitiationTimeoutCalculator.php b/src/Pyz/Zed/Oms/Business/Calculator/InitiationTimeoutCalculator.php index 7cd0a4e004..a37e16b97b 100644 --- a/src/Pyz/Zed/Oms/Business/Calculator/InitiationTimeoutCalculator.php +++ b/src/Pyz/Zed/Oms/Business/Calculator/InitiationTimeoutCalculator.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Business\Calculator; use DateInterval; diff --git a/src/Pyz/Zed/Oms/Business/Calculator/TimeoutProcessorTimeoutCalculatorInterface.php b/src/Pyz/Zed/Oms/Business/Calculator/TimeoutProcessorTimeoutCalculatorInterface.php index feb8562951..9f3ae4b6ee 100644 --- a/src/Pyz/Zed/Oms/Business/Calculator/TimeoutProcessorTimeoutCalculatorInterface.php +++ b/src/Pyz/Zed/Oms/Business/Calculator/TimeoutProcessorTimeoutCalculatorInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Business\Calculator; use Generated\Shared\Transfer\TimeoutProcessorTimeoutRequestTransfer; diff --git a/src/Pyz/Zed/Oms/Business/OmsBusinessFactory.php b/src/Pyz/Zed/Oms/Business/OmsBusinessFactory.php index 824036e79f..540eda7ad0 100644 --- a/src/Pyz/Zed/Oms/Business/OmsBusinessFactory.php +++ b/src/Pyz/Zed/Oms/Business/OmsBusinessFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Business; use Pyz\Zed\Oms\Business\Calculator\InitiationTimeoutCalculator; diff --git a/src/Pyz/Zed/Oms/Business/OmsFacade.php b/src/Pyz/Zed/Oms/Business/OmsFacade.php index b1e1b19c39..4a7a861a31 100644 --- a/src/Pyz/Zed/Oms/Business/OmsFacade.php +++ b/src/Pyz/Zed/Oms/Business/OmsFacade.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Business; use Generated\Shared\Transfer\TimeoutProcessorTimeoutRequestTransfer; diff --git a/src/Pyz/Zed/Oms/Business/OmsFacadeInterface.php b/src/Pyz/Zed/Oms/Business/OmsFacadeInterface.php index cc19cbf756..326c4f784f 100644 --- a/src/Pyz/Zed/Oms/Business/OmsFacadeInterface.php +++ b/src/Pyz/Zed/Oms/Business/OmsFacadeInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Business; use Generated\Shared\Transfer\TimeoutProcessorTimeoutRequestTransfer; diff --git a/src/Pyz/Zed/Oms/Communication/OmsCommunicationFactory.php b/src/Pyz/Zed/Oms/Communication/OmsCommunicationFactory.php index 0b43fa7a1a..8b6c9395b8 100644 --- a/src/Pyz/Zed/Oms/Communication/OmsCommunicationFactory.php +++ b/src/Pyz/Zed/Oms/Communication/OmsCommunicationFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Communication; use Pyz\Zed\Oms\OmsDependencyProvider; diff --git a/src/Pyz/Zed/Oms/Communication/Plugin/Oms/InitiationTimeoutProcessorPlugin.php b/src/Pyz/Zed/Oms/Communication/Plugin/Oms/InitiationTimeoutProcessorPlugin.php index dbf36a4f81..3eccc95e63 100644 --- a/src/Pyz/Zed/Oms/Communication/Plugin/Oms/InitiationTimeoutProcessorPlugin.php +++ b/src/Pyz/Zed/Oms/Communication/Plugin/Oms/InitiationTimeoutProcessorPlugin.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms\Communication\Plugin\Oms; use Generated\Shared\Transfer\OmsEventTransfer; diff --git a/src/Pyz/Zed/Oms/OmsConfig.php b/src/Pyz/Zed/Oms/OmsConfig.php index d7b1676676..6307db2618 100644 --- a/src/Pyz/Zed/Oms/OmsConfig.php +++ b/src/Pyz/Zed/Oms/OmsConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms; use Spryker\Zed\Oms\OmsConfig as SprykerOmsConfig; diff --git a/src/Pyz/Zed/Oms/OmsDependencyProvider.php b/src/Pyz/Zed/Oms/OmsDependencyProvider.php index 2297547359..970a0a6c86 100644 --- a/src/Pyz/Zed/Oms/OmsDependencyProvider.php +++ b/src/Pyz/Zed/Oms/OmsDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Oms; use Pyz\Zed\Oms\Communication\Plugin\Oms\InitiationTimeoutProcessorPlugin; @@ -138,7 +140,7 @@ protected function extendConditionPlugins(Container $container): Container * * @return array<\Spryker\Zed\OmsExtension\Dependency\Plugin\OmsOrderMailExpanderPluginInterface> */ - protected function getOmsOrderMailExpanderPlugins(Container $container): array + protected function getOmsOrderMailExpanderPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ShipmentOrderMailExpanderPlugin(), @@ -150,7 +152,7 @@ protected function getOmsOrderMailExpanderPlugins(Container $container): array * * @return array<\Spryker\Zed\OmsExtension\Dependency\Plugin\OmsManualEventGrouperPluginInterface> */ - protected function getOmsManualEventGrouperPlugins(Container $container): array + protected function getOmsManualEventGrouperPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ShipmentManualEventGrouperPlugin(), diff --git a/src/Pyz/Zed/Payment/PaymentConfig.php b/src/Pyz/Zed/Payment/PaymentConfig.php index 4240cd01b5..2be750ff96 100644 --- a/src/Pyz/Zed/Payment/PaymentConfig.php +++ b/src/Pyz/Zed/Payment/PaymentConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Payment; use Generated\Shared\Transfer\ExpenseTransfer; diff --git a/src/Pyz/Zed/Payment/PaymentDependencyProvider.php b/src/Pyz/Zed/Payment/PaymentDependencyProvider.php index 0486dd015b..0aa682da66 100644 --- a/src/Pyz/Zed/Payment/PaymentDependencyProvider.php +++ b/src/Pyz/Zed/Payment/PaymentDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Payment; use Spryker\Zed\GiftCard\Communication\Plugin\GiftCardPaymentMethodFilterPlugin; diff --git a/src/Pyz/Zed/PaymentApp/PaymentAppDependencyProvider.php b/src/Pyz/Zed/PaymentApp/PaymentAppDependencyProvider.php index f0ac1c5023..95bd536c3a 100644 --- a/src/Pyz/Zed/PaymentApp/PaymentAppDependencyProvider.php +++ b/src/Pyz/Zed/PaymentApp/PaymentAppDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PaymentApp; use Spryker\Zed\PaymentApp\PaymentAppDependencyProvider as SprykerPaymentAppDependencyProvider; diff --git a/src/Pyz/Zed/PaymentAppShipment/PaymentAppShipmentConfig.php b/src/Pyz/Zed/PaymentAppShipment/PaymentAppShipmentConfig.php index c876069249..88ee695938 100644 --- a/src/Pyz/Zed/PaymentAppShipment/PaymentAppShipmentConfig.php +++ b/src/Pyz/Zed/PaymentAppShipment/PaymentAppShipmentConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PaymentAppShipment; use Generated\Shared\Transfer\QuoteTransfer; diff --git a/src/Pyz/Zed/PaymentCartConnector/PaymentCartConnectorConfig.php b/src/Pyz/Zed/PaymentCartConnector/PaymentCartConnectorConfig.php index 0781c50565..44b2e237e6 100644 --- a/src/Pyz/Zed/PaymentCartConnector/PaymentCartConnectorConfig.php +++ b/src/Pyz/Zed/PaymentCartConnector/PaymentCartConnectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PaymentCartConnector; use Spryker\Zed\PaymentCartConnector\PaymentCartConnectorConfig as SprykerPaymentCartConnectorConfig; diff --git a/src/Pyz/Zed/PaymentGui/PaymentGuiDependencyProvider.php b/src/Pyz/Zed/PaymentGui/PaymentGuiDependencyProvider.php index 74e16b7334..863d4b3ec7 100644 --- a/src/Pyz/Zed/PaymentGui/PaymentGuiDependencyProvider.php +++ b/src/Pyz/Zed/PaymentGui/PaymentGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PaymentGui; use Spryker\Zed\Kernel\Communication\Form\FormTypeInterface; diff --git a/src/Pyz/Zed/PersistentCart/PersistentCartDependencyProvider.php b/src/Pyz/Zed/PersistentCart/PersistentCartDependencyProvider.php index 1f15337e4c..fc68ac3323 100644 --- a/src/Pyz/Zed/PersistentCart/PersistentCartDependencyProvider.php +++ b/src/Pyz/Zed/PersistentCart/PersistentCartDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PersistentCart; use Spryker\Zed\PersistentCart\PersistentCartDependencyProvider as SprykerPersistentCartDependencyProvider; diff --git a/src/Pyz/Zed/PickingList/PickingListDependencyProvider.php b/src/Pyz/Zed/PickingList/PickingListDependencyProvider.php index 562350ce4f..29a2d80f39 100644 --- a/src/Pyz/Zed/PickingList/PickingListDependencyProvider.php +++ b/src/Pyz/Zed/PickingList/PickingListDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PickingList; use Spryker\Zed\PickingList\PickingListDependencyProvider as SprykerPickingListDependencyProvider; diff --git a/src/Pyz/Zed/PickingListPushNotification/PickingListPushNotificationConfig.php b/src/Pyz/Zed/PickingListPushNotification/PickingListPushNotificationConfig.php index 8790b62bd0..88185eb5ea 100644 --- a/src/Pyz/Zed/PickingListPushNotification/PickingListPushNotificationConfig.php +++ b/src/Pyz/Zed/PickingListPushNotification/PickingListPushNotificationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PickingListPushNotification; use Spryker\Zed\PickingListPushNotification\PickingListPushNotificationConfig as SprykerPickingListPushNotificationConfig; diff --git a/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorConfig.php b/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorConfig.php index ea51484b13..545ce167c2 100644 --- a/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorConfig.php +++ b/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PriceCartConnector; use Generated\Shared\Transfer\ItemTransfer; diff --git a/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorDependencyProvider.php b/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorDependencyProvider.php index 4fa9025d0b..73a522b0ec 100644 --- a/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorDependencyProvider.php +++ b/src/Pyz/Zed/PriceCartConnector/PriceCartConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PriceCartConnector; use Spryker\Zed\PriceCartConnector\PriceCartConnectorDependencyProvider as SprykerPriceCartConnectorDependencyProvider; diff --git a/src/Pyz/Zed/PriceProduct/PriceProductConfig.php b/src/Pyz/Zed/PriceProduct/PriceProductConfig.php index 3204e406ee..3d34112bf1 100644 --- a/src/Pyz/Zed/PriceProduct/PriceProductConfig.php +++ b/src/Pyz/Zed/PriceProduct/PriceProductConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PriceProduct; use Spryker\Zed\PriceProduct\PriceProductConfig as SprykerPriceProductConfig; diff --git a/src/Pyz/Zed/PriceProduct/PriceProductDependencyProvider.php b/src/Pyz/Zed/PriceProduct/PriceProductDependencyProvider.php index bc69ae32dd..565c2ab5ea 100644 --- a/src/Pyz/Zed/PriceProduct/PriceProductDependencyProvider.php +++ b/src/Pyz/Zed/PriceProduct/PriceProductDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PriceProduct; use Spryker\Zed\PriceProduct\PriceProductDependencyProvider as SprykerPriceProductDependencyProvider; diff --git a/src/Pyz/Zed/PriceProductScheduleGui/PriceProductScheduleGuiConfig.php b/src/Pyz/Zed/PriceProductScheduleGui/PriceProductScheduleGuiConfig.php index 5db951a4f0..8288928ca5 100644 --- a/src/Pyz/Zed/PriceProductScheduleGui/PriceProductScheduleGuiConfig.php +++ b/src/Pyz/Zed/PriceProductScheduleGui/PriceProductScheduleGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PriceProductScheduleGui; use Spryker\Zed\PriceProductScheduleGui\PriceProductScheduleGuiConfig as SprykerPriceProductScheduleGuiConfig; diff --git a/src/Pyz/Zed/PriceProductStorage/PriceProductStorageConfig.php b/src/Pyz/Zed/PriceProductStorage/PriceProductStorageConfig.php index 9d5137452f..cc760c758c 100644 --- a/src/Pyz/Zed/PriceProductStorage/PriceProductStorageConfig.php +++ b/src/Pyz/Zed/PriceProductStorage/PriceProductStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PriceProductStorage; use Spryker\Shared\PriceProductStorage\PriceProductStorageConfig as SprykerSharedPriceProductStorageConfig; diff --git a/src/Pyz/Zed/Product/ProductConfig.php b/src/Pyz/Zed/Product/ProductConfig.php index 480d5e30d8..2b18007162 100644 --- a/src/Pyz/Zed/Product/ProductConfig.php +++ b/src/Pyz/Zed/Product/ProductConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Product; use Spryker\Shared\ProductBundleStorage\ProductBundleStorageConfig; diff --git a/src/Pyz/Zed/Product/ProductDependencyProvider.php b/src/Pyz/Zed/Product/ProductDependencyProvider.php index 88e049bf71..900af4321a 100644 --- a/src/Pyz/Zed/Product/ProductDependencyProvider.php +++ b/src/Pyz/Zed/Product/ProductDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Product; use Spryker\Zed\Kernel\Container; @@ -54,7 +56,7 @@ class ProductDependencyProvider extends SprykerProductDependencyProvider * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductAbstractPluginCreateInterface> */ - protected function getProductAbstractBeforeCreatePlugins(Container $container): array + protected function getProductAbstractBeforeCreatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return []; } @@ -64,7 +66,7 @@ protected function getProductAbstractBeforeCreatePlugins(Container $container): * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductAbstractPluginCreateInterface> */ - protected function getProductAbstractAfterCreatePlugins(Container $container): array + protected function getProductAbstractAfterCreatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ImageSetProductAbstractAfterCreatePlugin(), @@ -78,7 +80,7 @@ protected function getProductAbstractAfterCreatePlugins(Container $container): a * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductAbstractPluginReadInterface> */ - protected function getProductAbstractReadPlugins(Container $container): array + protected function getProductAbstractReadPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ImageSetProductAbstractReadPlugin(), @@ -92,7 +94,7 @@ protected function getProductAbstractReadPlugins(Container $container): array * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductAbstractPluginUpdateInterface> */ - protected function getProductAbstractBeforeUpdatePlugins(Container $container): array + protected function getProductAbstractBeforeUpdatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return []; } @@ -102,7 +104,7 @@ protected function getProductAbstractBeforeUpdatePlugins(Container $container): * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductAbstractPluginUpdateInterface> */ - protected function getProductAbstractAfterUpdatePlugins(Container $container): array + protected function getProductAbstractAfterUpdatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ImageSetProductAbstractAfterUpdatePlugin(), @@ -116,7 +118,7 @@ protected function getProductAbstractAfterUpdatePlugins(Container $container): a * * @return array<\Spryker\Zed\ProductExtension\Dependency\Plugin\ProductConcreteCreatePluginInterface> */ - protected function getProductConcreteAfterCreatePlugins(Container $container): array + protected function getProductConcreteAfterCreatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ImageSetProductConcreteAfterCreatePlugin(), @@ -134,7 +136,7 @@ protected function getProductConcreteAfterCreatePlugins(Container $container): a * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductConcretePluginUpdateInterface> */ - protected function getProductConcreteBeforeUpdatePlugins(Container $container): array + protected function getProductConcreteBeforeUpdatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ProductAlternativeGuiProductConcretePluginUpdate(), #ProductAlternativeFeature @@ -146,7 +148,7 @@ protected function getProductConcreteBeforeUpdatePlugins(Container $container): * * @return array<\Spryker\Zed\Product\Dependency\Plugin\ProductConcretePluginUpdateInterface> */ - protected function getProductConcreteAfterUpdatePlugins(Container $container): array + protected function getProductConcreteAfterUpdatePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new ImageSetProductConcreteAfterUpdatePlugin(), diff --git a/src/Pyz/Zed/ProductAlternative/ProductAlternativeDependencyProvider.php b/src/Pyz/Zed/ProductAlternative/ProductAlternativeDependencyProvider.php index 8edc6cf9b7..6288d9520e 100644 --- a/src/Pyz/Zed/ProductAlternative/ProductAlternativeDependencyProvider.php +++ b/src/Pyz/Zed/ProductAlternative/ProductAlternativeDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductAlternative; use Spryker\Zed\Availability\Communication\Plugin\ProductAlternative\AvailabilityCheckAlternativeProductApplicablePlugin; diff --git a/src/Pyz/Zed/ProductAlternativeProductLabelConnector/ProductAlternativeProductLabelConnectorConfig.php b/src/Pyz/Zed/ProductAlternativeProductLabelConnector/ProductAlternativeProductLabelConnectorConfig.php index 3dc3ea4f89..ada3396a0b 100644 --- a/src/Pyz/Zed/ProductAlternativeProductLabelConnector/ProductAlternativeProductLabelConnectorConfig.php +++ b/src/Pyz/Zed/ProductAlternativeProductLabelConnector/ProductAlternativeProductLabelConnectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductAlternativeProductLabelConnector; use Spryker\Zed\ProductAlternativeProductLabelConnector\ProductAlternativeProductLabelConnectorConfig as SprykerProductAlternativeProductLabelConnectorConfig; diff --git a/src/Pyz/Zed/ProductAlternativeStorage/ProductAlternativeStorageConfig.php b/src/Pyz/Zed/ProductAlternativeStorage/ProductAlternativeStorageConfig.php index a8100dbf87..95a05085e4 100644 --- a/src/Pyz/Zed/ProductAlternativeStorage/ProductAlternativeStorageConfig.php +++ b/src/Pyz/Zed/ProductAlternativeStorage/ProductAlternativeStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductAlternativeStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductAttribute/ProductAttributeConfig.php b/src/Pyz/Zed/ProductAttribute/ProductAttributeConfig.php index dadf392999..c5f4607d3a 100644 --- a/src/Pyz/Zed/ProductAttribute/ProductAttributeConfig.php +++ b/src/Pyz/Zed/ProductAttribute/ProductAttributeConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductAttribute; use Spryker\Shared\ProductAttribute\ProductAttributeConfig as SharedProductAttributeConfig; diff --git a/src/Pyz/Zed/ProductAttribute/ProductAttributeDependencyProvider.php b/src/Pyz/Zed/ProductAttribute/ProductAttributeDependencyProvider.php index 43d098b766..b91f92de0c 100644 --- a/src/Pyz/Zed/ProductAttribute/ProductAttributeDependencyProvider.php +++ b/src/Pyz/Zed/ProductAttribute/ProductAttributeDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductAttribute; use Spryker\Zed\ProductAttribute\Communication\Plugin\ProductAttribute\MultiSelectProductAttributeDataFormatterPlugin; diff --git a/src/Pyz/Zed/ProductBundle/Dependency/ProductBundleEvents.php b/src/Pyz/Zed/ProductBundle/Dependency/ProductBundleEvents.php index 7417445256..ecacbff764 100644 --- a/src/Pyz/Zed/ProductBundle/Dependency/ProductBundleEvents.php +++ b/src/Pyz/Zed/ProductBundle/Dependency/ProductBundleEvents.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductBundle\Dependency; interface ProductBundleEvents diff --git a/src/Pyz/Zed/ProductBundleStorage/ProductBundleStorageConfig.php b/src/Pyz/Zed/ProductBundleStorage/ProductBundleStorageConfig.php index f3fc36bcee..9b00c22fed 100644 --- a/src/Pyz/Zed/ProductBundleStorage/ProductBundleStorageConfig.php +++ b/src/Pyz/Zed/ProductBundleStorage/ProductBundleStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductBundleStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductCategoryFilterGui/ProductCategoryFilterGuiDependencyProvider.php b/src/Pyz/Zed/ProductCategoryFilterGui/ProductCategoryFilterGuiDependencyProvider.php index ee80e61ac9..c8025c9368 100644 --- a/src/Pyz/Zed/ProductCategoryFilterGui/ProductCategoryFilterGuiDependencyProvider.php +++ b/src/Pyz/Zed/ProductCategoryFilterGui/ProductCategoryFilterGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductCategoryFilterGui; use Spryker\Zed\ProductCategoryFilterGui\ProductCategoryFilterGuiDependencyProvider as SprykerProductCategoryFilterGuiDependencyProvider; diff --git a/src/Pyz/Zed/ProductCategoryFilterStorage/ProductCategoryFilterStorageConfig.php b/src/Pyz/Zed/ProductCategoryFilterStorage/ProductCategoryFilterStorageConfig.php index 2e2f6bdd1f..a719ca9aba 100644 --- a/src/Pyz/Zed/ProductCategoryFilterStorage/ProductCategoryFilterStorageConfig.php +++ b/src/Pyz/Zed/ProductCategoryFilterStorage/ProductCategoryFilterStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductCategoryFilterStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductCategoryStorage/ProductCategoryStorageConfig.php b/src/Pyz/Zed/ProductCategoryStorage/ProductCategoryStorageConfig.php index a9d953cc6d..dafa8ac981 100644 --- a/src/Pyz/Zed/ProductCategoryStorage/ProductCategoryStorageConfig.php +++ b/src/Pyz/Zed/ProductCategoryStorage/ProductCategoryStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductCategoryStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductConfigurationStorage/ProductConfigurationStorageConfig.php b/src/Pyz/Zed/ProductConfigurationStorage/ProductConfigurationStorageConfig.php index a74cf897d8..ba3d718aa8 100644 --- a/src/Pyz/Zed/ProductConfigurationStorage/ProductConfigurationStorageConfig.php +++ b/src/Pyz/Zed/ProductConfigurationStorage/ProductConfigurationStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductConfigurationStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductDiscontinued/ProductDiscontinuedDependencyProvider.php b/src/Pyz/Zed/ProductDiscontinued/ProductDiscontinuedDependencyProvider.php index 6f393481bd..e9a4c624c1 100644 --- a/src/Pyz/Zed/ProductDiscontinued/ProductDiscontinuedDependencyProvider.php +++ b/src/Pyz/Zed/ProductDiscontinued/ProductDiscontinuedDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductDiscontinued; use Spryker\Zed\ProductDiscontinued\ProductDiscontinuedDependencyProvider as SprykerProductDiscontinuedDependencyProvider; diff --git a/src/Pyz/Zed/ProductDiscontinuedProductLabelConnector/ProductDiscontinuedProductLabelConnectorConfig.php b/src/Pyz/Zed/ProductDiscontinuedProductLabelConnector/ProductDiscontinuedProductLabelConnectorConfig.php index 40ff8b5f14..bc40372fcd 100644 --- a/src/Pyz/Zed/ProductDiscontinuedProductLabelConnector/ProductDiscontinuedProductLabelConnectorConfig.php +++ b/src/Pyz/Zed/ProductDiscontinuedProductLabelConnector/ProductDiscontinuedProductLabelConnectorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductDiscontinuedProductLabelConnector; use Spryker\Zed\ProductDiscontinuedProductLabelConnector\ProductDiscontinuedProductLabelConnectorConfig as SprykerProductDiscontinuedProductLabelConnectorConfig; diff --git a/src/Pyz/Zed/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php b/src/Pyz/Zed/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php index 15dcd47e3c..476d1f4bb7 100644 --- a/src/Pyz/Zed/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php +++ b/src/Pyz/Zed/ProductDiscontinuedStorage/ProductDiscontinuedStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductDiscontinuedStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductDiscountConnector/ProductDiscountConnectorDependencyProvider.php b/src/Pyz/Zed/ProductDiscountConnector/ProductDiscountConnectorDependencyProvider.php index c9901ebb74..74c50bb150 100644 --- a/src/Pyz/Zed/ProductDiscountConnector/ProductDiscountConnectorDependencyProvider.php +++ b/src/Pyz/Zed/ProductDiscountConnector/ProductDiscountConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductDiscountConnector; use Spryker\Zed\ProductBundleDiscountConnector\Communication\Plugin\ProductDiscountConnector\ProductBundleProductAttributeCollectorExpanderPlugin; diff --git a/src/Pyz/Zed/ProductGroupStorage/ProductGroupStorageConfig.php b/src/Pyz/Zed/ProductGroupStorage/ProductGroupStorageConfig.php index 05284b20e2..cd8b18f610 100644 --- a/src/Pyz/Zed/ProductGroupStorage/ProductGroupStorageConfig.php +++ b/src/Pyz/Zed/ProductGroupStorage/ProductGroupStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductGroupStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductImageStorage/ProductImageStorageConfig.php b/src/Pyz/Zed/ProductImageStorage/ProductImageStorageConfig.php index a5462186fd..a08b8124b3 100644 --- a/src/Pyz/Zed/ProductImageStorage/ProductImageStorageConfig.php +++ b/src/Pyz/Zed/ProductImageStorage/ProductImageStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductImageStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductLabel/ProductLabelDependencyProvider.php b/src/Pyz/Zed/ProductLabel/ProductLabelDependencyProvider.php index 49e522cde2..bea12347a6 100644 --- a/src/Pyz/Zed/ProductLabel/ProductLabelDependencyProvider.php +++ b/src/Pyz/Zed/ProductLabel/ProductLabelDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductLabel; use Pyz\Zed\ExampleProductSalePage\Communication\Plugin\ExampleProductSalePageLabelUpdaterPlugin; diff --git a/src/Pyz/Zed/ProductLabelGui/ProductLabelGuiDependencyProvider.php b/src/Pyz/Zed/ProductLabelGui/ProductLabelGuiDependencyProvider.php index e876d0d398..4ce9d9a48d 100644 --- a/src/Pyz/Zed/ProductLabelGui/ProductLabelGuiDependencyProvider.php +++ b/src/Pyz/Zed/ProductLabelGui/ProductLabelGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductLabelGui; use Spryker\Zed\Kernel\Communication\Form\FormTypeInterface; diff --git a/src/Pyz/Zed/ProductLabelStorage/ProductLabelStorageConfig.php b/src/Pyz/Zed/ProductLabelStorage/ProductLabelStorageConfig.php index 6387a10180..b60747d87a 100644 --- a/src/Pyz/Zed/ProductLabelStorage/ProductLabelStorageConfig.php +++ b/src/Pyz/Zed/ProductLabelStorage/ProductLabelStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductLabelStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductList/ProductListDependencyProvider.php b/src/Pyz/Zed/ProductList/ProductListDependencyProvider.php index 51e1651f47..24e02d63a1 100644 --- a/src/Pyz/Zed/ProductList/ProductListDependencyProvider.php +++ b/src/Pyz/Zed/ProductList/ProductListDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductList; use Spryker\Zed\ConfigurableBundle\Communication\Plugin\ProductList\ConfigurableBundleTemplateSlotProductListDeletePreCheckPlugin; diff --git a/src/Pyz/Zed/ProductListGui/ProductListGuiConfig.php b/src/Pyz/Zed/ProductListGui/ProductListGuiConfig.php index a454d333e6..5343b2de5b 100644 --- a/src/Pyz/Zed/ProductListGui/ProductListGuiConfig.php +++ b/src/Pyz/Zed/ProductListGui/ProductListGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductListGui; use Spryker\Zed\ProductListGui\ProductListGuiConfig as SprykerProductListGuiConfig; diff --git a/src/Pyz/Zed/ProductListGui/ProductListGuiDependencyProvider.php b/src/Pyz/Zed/ProductListGui/ProductListGuiDependencyProvider.php index 2c51c4b88a..623c29d3a5 100644 --- a/src/Pyz/Zed/ProductListGui/ProductListGuiDependencyProvider.php +++ b/src/Pyz/Zed/ProductListGui/ProductListGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductListGui; use Spryker\Zed\ConfigurableBundleGui\Communication\Plugin\ProductListGui\ConfigurableBundleTemplateListProductListTopButtonsExpanderPlugin; diff --git a/src/Pyz/Zed/ProductListSearch/ProductListSearchConfig.php b/src/Pyz/Zed/ProductListSearch/ProductListSearchConfig.php index f9a162740d..54b504126e 100644 --- a/src/Pyz/Zed/ProductListSearch/ProductListSearchConfig.php +++ b/src/Pyz/Zed/ProductListSearch/ProductListSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductListSearch; use Spryker\Shared\Publisher\PublisherConfig; diff --git a/src/Pyz/Zed/ProductListStorage/ProductListStorageConfig.php b/src/Pyz/Zed/ProductListStorage/ProductListStorageConfig.php index af5d393ef0..cd958949e8 100644 --- a/src/Pyz/Zed/ProductListStorage/ProductListStorageConfig.php +++ b/src/Pyz/Zed/ProductListStorage/ProductListStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductListStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductManagement/ProductManagementDependencyProvider.php b/src/Pyz/Zed/ProductManagement/ProductManagementDependencyProvider.php index 90386b28b7..86f3603bca 100644 --- a/src/Pyz/Zed/ProductManagement/ProductManagementDependencyProvider.php +++ b/src/Pyz/Zed/ProductManagement/ProductManagementDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductManagement; use Spryker\Zed\CmsBlockProductConnector\Communication\Plugin\CmsBlockProductAbstractBlockListViewPlugin; @@ -52,7 +54,7 @@ protected function getStoreRelationFormTypePlugin(): FormTypeInterface * * @return \Spryker\Zed\Kernel\Communication\Form\FormTypeInterface */ - protected function createMoneyFormTypePlugin(Container $container): FormTypeInterface + protected function createMoneyFormTypePlugin(Container $container): FormTypeInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return new MoneyFormTypePlugin(); } diff --git a/src/Pyz/Zed/ProductOption/ProductOptionDependencyProvider.php b/src/Pyz/Zed/ProductOption/ProductOptionDependencyProvider.php index 950e400aa6..3bc1e9fa4c 100644 --- a/src/Pyz/Zed/ProductOption/ProductOptionDependencyProvider.php +++ b/src/Pyz/Zed/ProductOption/ProductOptionDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductOption; use Spryker\Zed\Kernel\Communication\Form\FormTypeInterface; @@ -19,7 +21,7 @@ class ProductOptionDependencyProvider extends SprykerProductOptionDependencyProv * * @return \Spryker\Zed\Kernel\Communication\Form\FormTypeInterface */ - protected function createMoneyCollectionFormTypePlugin(Container $container): FormTypeInterface + protected function createMoneyCollectionFormTypePlugin(Container $container): FormTypeInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return new MoneyCollectionFormTypePlugin(); } diff --git a/src/Pyz/Zed/ProductOptionStorage/ProductOptionStorageConfig.php b/src/Pyz/Zed/ProductOptionStorage/ProductOptionStorageConfig.php index 66e7a50162..a4e2523eac 100644 --- a/src/Pyz/Zed/ProductOptionStorage/ProductOptionStorageConfig.php +++ b/src/Pyz/Zed/ProductOptionStorage/ProductOptionStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductOptionStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductPageSearch/ProductPageSearchConfig.php b/src/Pyz/Zed/ProductPageSearch/ProductPageSearchConfig.php index 41f526b841..a1af69eb37 100644 --- a/src/Pyz/Zed/ProductPageSearch/ProductPageSearchConfig.php +++ b/src/Pyz/Zed/ProductPageSearch/ProductPageSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductPageSearch; use Spryker\Shared\ProductPageSearch\ProductPageSearchConfig as SprykerSharedProductPageSearchConfig; diff --git a/src/Pyz/Zed/ProductPageSearch/ProductPageSearchDependencyProvider.php b/src/Pyz/Zed/ProductPageSearch/ProductPageSearchDependencyProvider.php index 11a255bfda..9271d1e5d3 100644 --- a/src/Pyz/Zed/ProductPageSearch/ProductPageSearchDependencyProvider.php +++ b/src/Pyz/Zed/ProductPageSearch/ProductPageSearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductPageSearch; use Spryker\Shared\ProductLabelSearch\ProductLabelSearchConfig; diff --git a/src/Pyz/Zed/ProductQuantityStorage/ProductQuantityStorageConfig.php b/src/Pyz/Zed/ProductQuantityStorage/ProductQuantityStorageConfig.php index 215e157a38..986a04c498 100644 --- a/src/Pyz/Zed/ProductQuantityStorage/ProductQuantityStorageConfig.php +++ b/src/Pyz/Zed/ProductQuantityStorage/ProductQuantityStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductQuantityStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductRelationGui/ProductRelationGuiDependencyProvider.php b/src/Pyz/Zed/ProductRelationGui/ProductRelationGuiDependencyProvider.php index 8dd14509d9..b698141047 100644 --- a/src/Pyz/Zed/ProductRelationGui/ProductRelationGuiDependencyProvider.php +++ b/src/Pyz/Zed/ProductRelationGui/ProductRelationGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductRelationGui; use Spryker\Zed\Kernel\Communication\Form\FormTypeInterface; diff --git a/src/Pyz/Zed/ProductRelationStorage/ProductRelationStorageConfig.php b/src/Pyz/Zed/ProductRelationStorage/ProductRelationStorageConfig.php index dd4888273c..955ca5f2a1 100644 --- a/src/Pyz/Zed/ProductRelationStorage/ProductRelationStorageConfig.php +++ b/src/Pyz/Zed/ProductRelationStorage/ProductRelationStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductRelationStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductReviewSearch/ProductReviewSearchConfig.php b/src/Pyz/Zed/ProductReviewSearch/ProductReviewSearchConfig.php index 7bc292c1e1..9c6fba00e8 100644 --- a/src/Pyz/Zed/ProductReviewSearch/ProductReviewSearchConfig.php +++ b/src/Pyz/Zed/ProductReviewSearch/ProductReviewSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductReviewSearch; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductReviewStorage/ProductReviewStorageConfig.php b/src/Pyz/Zed/ProductReviewStorage/ProductReviewStorageConfig.php index 34a145d2b3..6414b5e9c9 100644 --- a/src/Pyz/Zed/ProductReviewStorage/ProductReviewStorageConfig.php +++ b/src/Pyz/Zed/ProductReviewStorage/ProductReviewStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductReviewStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductSearchConfigStorage/ProductSearchConfigStorageConfig.php b/src/Pyz/Zed/ProductSearchConfigStorage/ProductSearchConfigStorageConfig.php index 0ab0967b84..35f0b9de63 100644 --- a/src/Pyz/Zed/ProductSearchConfigStorage/ProductSearchConfigStorageConfig.php +++ b/src/Pyz/Zed/ProductSearchConfigStorage/ProductSearchConfigStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductSearchConfigStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductSetPageSearch/ProductSetPageSearchConfig.php b/src/Pyz/Zed/ProductSetPageSearch/ProductSetPageSearchConfig.php index 71ac6523b1..94fc8aa1a5 100644 --- a/src/Pyz/Zed/ProductSetPageSearch/ProductSetPageSearchConfig.php +++ b/src/Pyz/Zed/ProductSetPageSearch/ProductSetPageSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductSetPageSearch; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductSetStorage/ProductSetStorageConfig.php b/src/Pyz/Zed/ProductSetStorage/ProductSetStorageConfig.php index 8dfb354597..1409a2db14 100644 --- a/src/Pyz/Zed/ProductSetStorage/ProductSetStorageConfig.php +++ b/src/Pyz/Zed/ProductSetStorage/ProductSetStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductSetStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Listener/ProductBundleStoragePublishListener.php b/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Listener/ProductBundleStoragePublishListener.php index 65aef15530..e813d0639d 100644 --- a/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Listener/ProductBundleStoragePublishListener.php +++ b/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Listener/ProductBundleStoragePublishListener.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductStorage\Communication\Plugin\Event\Listener; use Orm\Zed\ProductBundle\Persistence\Map\SpyProductBundleTableMap; @@ -32,7 +34,7 @@ class ProductBundleStoragePublishListener extends AbstractPlugin implements Even * * @return void */ - public function handleBulk(array $eventTransfers, $eventName): void + public function handleBulk(array $eventTransfers, $eventName): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $this->preventTransaction(); $productIds = $this->getFactory() diff --git a/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Subscriber/ProductStorageEventSubscriber.php b/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Subscriber/ProductStorageEventSubscriber.php index ab59222dbc..0b06ad702f 100644 --- a/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Subscriber/ProductStorageEventSubscriber.php +++ b/src/Pyz/Zed/ProductStorage/Communication/Plugin/Event/Subscriber/ProductStorageEventSubscriber.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductStorage\Communication\Plugin\Event\Subscriber; use Pyz\Zed\ProductBundle\Dependency\ProductBundleEvents; diff --git a/src/Pyz/Zed/ProductStorage/Persistence/ProductStoragePersistenceFactory.php b/src/Pyz/Zed/ProductStorage/Persistence/ProductStoragePersistenceFactory.php index a10cef74f1..a0fbc90c1d 100644 --- a/src/Pyz/Zed/ProductStorage/Persistence/ProductStoragePersistenceFactory.php +++ b/src/Pyz/Zed/ProductStorage/Persistence/ProductStoragePersistenceFactory.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductStorage\Persistence; use Orm\Zed\ProductBundle\Persistence\SpyProductBundleQuery; diff --git a/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainer.php b/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainer.php index 321e64e5cc..546d095f05 100644 --- a/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainer.php +++ b/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainer.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductStorage\Persistence; use Orm\Zed\Product\Persistence\Map\SpyProductAbstractLocalizedAttributesTableMap; @@ -57,7 +59,7 @@ public function queryProductAbstractByIds(array $productAbstractIds): ModelCrite * * @return \Orm\Zed\ProductBundle\Persistence\SpyProductBundleQuery */ - public function queryBundledProductIdsByProductConcreteId($idProductConcrete): SpyProductBundleQuery + public function queryBundledProductIdsByProductConcreteId(int $idProductConcrete): SpyProductBundleQuery { return $this->getFactory() ->getProductBundleQuery() diff --git a/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainerInterface.php b/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainerInterface.php index 16bfdc1529..30eaf1eccc 100644 --- a/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainerInterface.php +++ b/src/Pyz/Zed/ProductStorage/Persistence/ProductStorageQueryContainerInterface.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductStorage\Persistence; use Orm\Zed\ProductBundle\Persistence\SpyProductBundleQuery; @@ -19,7 +21,7 @@ interface ProductStorageQueryContainerInterface extends SprykerProductStorageQue * * @return \Orm\Zed\ProductBundle\Persistence\SpyProductBundleQuery */ - public function queryBundledProductIdsByProductConcreteId($idProductConcrete): SpyProductBundleQuery; + public function queryBundledProductIdsByProductConcreteId(int $idProductConcrete): SpyProductBundleQuery; /** * @api @@ -28,5 +30,5 @@ public function queryBundledProductIdsByProductConcreteId($idProductConcrete): S * * @return \Orm\Zed\ProductBundle\Persistence\SpyProductBundleQuery */ - public function queryBundleProduct($idProductConcrete): SpyProductBundleQuery; + public function queryBundleProduct(int $idProductConcrete): SpyProductBundleQuery; } diff --git a/src/Pyz/Zed/ProductStorage/ProductStorageConfig.php b/src/Pyz/Zed/ProductStorage/ProductStorageConfig.php index ae79ca2583..58a6d97618 100644 --- a/src/Pyz/Zed/ProductStorage/ProductStorageConfig.php +++ b/src/Pyz/Zed/ProductStorage/ProductStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ProductStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Propel/PropelConfig.php b/src/Pyz/Zed/Propel/PropelConfig.php index 082375c0b6..b5044ace79 100644 --- a/src/Pyz/Zed/Propel/PropelConfig.php +++ b/src/Pyz/Zed/Propel/PropelConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Propel; use Spryker\Zed\Propel\PropelConfig as SprykerPropelConfig; diff --git a/src/Pyz/Zed/Propel/PropelDependencyProvider.php b/src/Pyz/Zed/Propel/PropelDependencyProvider.php index e3be0d64fc..4c2d49903a 100644 --- a/src/Pyz/Zed/Propel/PropelDependencyProvider.php +++ b/src/Pyz/Zed/Propel/PropelDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Propel; use Spryker\Zed\Propel\Communication\Plugin\Propel\ForeignKeyIndexPropelSchemaElementFilterPlugin; diff --git a/src/Pyz/Zed/PropelOrm/PropelOrmConfig.php b/src/Pyz/Zed/PropelOrm/PropelOrmConfig.php index 3503090bf6..840a99bbf8 100644 --- a/src/Pyz/Zed/PropelOrm/PropelOrmConfig.php +++ b/src/Pyz/Zed/PropelOrm/PropelOrmConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PropelOrm; use Spryker\Zed\PropelOrm\PropelOrmConfig as SprykerPropelOrmConfig; diff --git a/src/Pyz/Zed/PropelOrm/PropelOrmDependencyProvider.php b/src/Pyz/Zed/PropelOrm/PropelOrmDependencyProvider.php index 139c922f89..d66131e8d3 100644 --- a/src/Pyz/Zed/PropelOrm/PropelOrmDependencyProvider.php +++ b/src/Pyz/Zed/PropelOrm/PropelOrmDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PropelOrm; use Spryker\Zed\PropelOrm\PropelOrmDependencyProvider as SprykerPropelOrmDependencyProvider; diff --git a/src/Pyz/Zed/Publisher/PublisherConfig.php b/src/Pyz/Zed/Publisher/PublisherConfig.php index 59c91f3169..704a51cac5 100644 --- a/src/Pyz/Zed/Publisher/PublisherConfig.php +++ b/src/Pyz/Zed/Publisher/PublisherConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Publisher; use Spryker\Shared\Publisher\PublisherConfig as SharedPublisherConfig; diff --git a/src/Pyz/Zed/Publisher/PublisherDependencyProvider.php b/src/Pyz/Zed/Publisher/PublisherDependencyProvider.php index 8816029d75..45583b7ee6 100644 --- a/src/Pyz/Zed/Publisher/PublisherDependencyProvider.php +++ b/src/Pyz/Zed/Publisher/PublisherDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Publisher; use Spryker\Shared\GlossaryStorage\GlossaryStorageConfig; diff --git a/src/Pyz/Zed/PushNotification/PushNotificationDependencyProvider.php b/src/Pyz/Zed/PushNotification/PushNotificationDependencyProvider.php index b837c171a2..6e8a4cdf21 100644 --- a/src/Pyz/Zed/PushNotification/PushNotificationDependencyProvider.php +++ b/src/Pyz/Zed/PushNotification/PushNotificationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\PushNotification; use Spryker\Zed\PickingListPushNotification\Communication\Plugin\PushNotification\WarehouseUserPushNotificationSubscriptionValidatorPlugin; diff --git a/src/Pyz/Zed/Queue/QueueConfig.php b/src/Pyz/Zed/Queue/QueueConfig.php index 24f286891c..3ebc217451 100644 --- a/src/Pyz/Zed/Queue/QueueConfig.php +++ b/src/Pyz/Zed/Queue/QueueConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Queue; use Generated\Shared\Transfer\RabbitMqConsumerOptionTransfer; diff --git a/src/Pyz/Zed/Queue/QueueDependencyProvider.php b/src/Pyz/Zed/Queue/QueueDependencyProvider.php index d02989003d..b11d0ceefb 100644 --- a/src/Pyz/Zed/Queue/QueueDependencyProvider.php +++ b/src/Pyz/Zed/Queue/QueueDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Queue; use Spryker\Shared\AssetStorage\AssetStorageConfig; @@ -59,7 +61,7 @@ class QueueDependencyProvider extends SprykerDependencyProvider * * @return array<\Spryker\Zed\Queue\Dependency\Plugin\QueueMessageProcessorPluginInterface> */ - protected function getProcessorMessagePlugins(Container $container): array + protected function getProcessorMessagePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ EventConstants::EVENT_QUEUE => new EventQueueMessageProcessorPlugin(), diff --git a/src/Pyz/Zed/Quote/QuoteConfig.php b/src/Pyz/Zed/Quote/QuoteConfig.php index 4733457f11..54b2b1fdd4 100644 --- a/src/Pyz/Zed/Quote/QuoteConfig.php +++ b/src/Pyz/Zed/Quote/QuoteConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Quote; use Generated\Shared\Transfer\QuoteTransfer; diff --git a/src/Pyz/Zed/Quote/QuoteDependencyProvider.php b/src/Pyz/Zed/Quote/QuoteDependencyProvider.php index edab88af1b..ea1b104966 100644 --- a/src/Pyz/Zed/Quote/QuoteDependencyProvider.php +++ b/src/Pyz/Zed/Quote/QuoteDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Quote; use Spryker\Zed\Currency\Communication\Plugin\Quote\DefaultCurrencyQuoteExpandBeforeCreatePlugin; diff --git a/src/Pyz/Zed/Router/RouterConfig.php b/src/Pyz/Zed/Router/RouterConfig.php index acec918052..5026670b2d 100644 --- a/src/Pyz/Zed/Router/RouterConfig.php +++ b/src/Pyz/Zed/Router/RouterConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Router; use Spryker\Zed\Router\RouterConfig as SprykerRouterConfig; diff --git a/src/Pyz/Zed/Router/RouterDependencyProvider.php b/src/Pyz/Zed/Router/RouterDependencyProvider.php index 5a763e2f9d..9c2a587488 100644 --- a/src/Pyz/Zed/Router/RouterDependencyProvider.php +++ b/src/Pyz/Zed/Router/RouterDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Router; use Spryker\Zed\Router\Communication\Plugin\Router\BackendGatewayRouterPlugin; diff --git a/src/Pyz/Zed/Sales/SalesConfig.php b/src/Pyz/Zed/Sales/SalesConfig.php index 2b5c62c5f9..3383c885d9 100644 --- a/src/Pyz/Zed/Sales/SalesConfig.php +++ b/src/Pyz/Zed/Sales/SalesConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Sales; use Spryker\Zed\Sales\SalesConfig as SprykerSalesConfig; diff --git a/src/Pyz/Zed/Sales/SalesDependencyProvider.php b/src/Pyz/Zed/Sales/SalesDependencyProvider.php index b664dd1dcf..e9501b5c23 100644 --- a/src/Pyz/Zed/Sales/SalesDependencyProvider.php +++ b/src/Pyz/Zed/Sales/SalesDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Sales; use Spryker\Zed\Currency\Communication\Plugin\Sales\CurrencyOrderExpanderPlugin; diff --git a/src/Pyz/Zed/SalesInvoice/SalesInvoiceConfig.php b/src/Pyz/Zed/SalesInvoice/SalesInvoiceConfig.php index 06136168a7..0588094cae 100644 --- a/src/Pyz/Zed/SalesInvoice/SalesInvoiceConfig.php +++ b/src/Pyz/Zed/SalesInvoice/SalesInvoiceConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesInvoice; use Spryker\Zed\SalesInvoice\SalesInvoiceConfig as SprykerSalesInvoiceConfig; diff --git a/src/Pyz/Zed/SalesOrderThreshold/SalesOrderThresholdDependencyProvider.php b/src/Pyz/Zed/SalesOrderThreshold/SalesOrderThresholdDependencyProvider.php index 444d17622f..dd4ef19f3d 100644 --- a/src/Pyz/Zed/SalesOrderThreshold/SalesOrderThresholdDependencyProvider.php +++ b/src/Pyz/Zed/SalesOrderThreshold/SalesOrderThresholdDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesOrderThreshold; use Spryker\Zed\SalesOrderThreshold\Communication\Plugin\SalesOrderThresholdExtension\GlobalSalesOrderThresholdDataSourceStrategyPlugin; diff --git a/src/Pyz/Zed/SalesOrderThresholdGui/SalesOrderThresholdGuiDependencyProvider.php b/src/Pyz/Zed/SalesOrderThresholdGui/SalesOrderThresholdGuiDependencyProvider.php index fb43104518..529ddfa5a2 100644 --- a/src/Pyz/Zed/SalesOrderThresholdGui/SalesOrderThresholdGuiDependencyProvider.php +++ b/src/Pyz/Zed/SalesOrderThresholdGui/SalesOrderThresholdGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesOrderThresholdGui; use Spryker\Zed\SalesOrderThresholdGui\Communication\Plugin\FormExpander\GlobalHardMaximumThresholdFormExpanderPlugin; diff --git a/src/Pyz/Zed/SalesPayment/SalesPaymentDependencyProvider.php b/src/Pyz/Zed/SalesPayment/SalesPaymentDependencyProvider.php index fa0d3dc535..ef1b41b68c 100644 --- a/src/Pyz/Zed/SalesPayment/SalesPaymentDependencyProvider.php +++ b/src/Pyz/Zed/SalesPayment/SalesPaymentDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesPayment; use Spryker\Zed\GiftCard\Communication\Plugin\SalesPayment\GiftCardPaymentMapKeyBuilderStrategyPlugin; diff --git a/src/Pyz/Zed/SalesProductConfigurationGui/SalesProductConfigurationGuiDependencyProvider.php b/src/Pyz/Zed/SalesProductConfigurationGui/SalesProductConfigurationGuiDependencyProvider.php index 45bdf24dd2..08f726c54d 100644 --- a/src/Pyz/Zed/SalesProductConfigurationGui/SalesProductConfigurationGuiDependencyProvider.php +++ b/src/Pyz/Zed/SalesProductConfigurationGui/SalesProductConfigurationGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesProductConfigurationGui; use Spryker\Zed\SalesProductConfigurationGui\SalesProductConfigurationGuiDependencyProvider as SprykerSalesProductConfigurationGuiDependencyProvider; diff --git a/src/Pyz/Zed/SalesQuantity/SalesQuantityConfig.php b/src/Pyz/Zed/SalesQuantity/SalesQuantityConfig.php index 1966c11967..f8d7bbc132 100644 --- a/src/Pyz/Zed/SalesQuantity/SalesQuantityConfig.php +++ b/src/Pyz/Zed/SalesQuantity/SalesQuantityConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesQuantity; use Spryker\Zed\SalesQuantity\SalesQuantityConfig as SprykerSalesQuantityConfig; diff --git a/src/Pyz/Zed/SalesQuantity/SalesQuantityDependencyProvider.php b/src/Pyz/Zed/SalesQuantity/SalesQuantityDependencyProvider.php index 8cee405265..d77f45dfb5 100644 --- a/src/Pyz/Zed/SalesQuantity/SalesQuantityDependencyProvider.php +++ b/src/Pyz/Zed/SalesQuantity/SalesQuantityDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesQuantity; use Spryker\Zed\DiscountPromotion\Communication\Plugin\SalesQuantity\NonSplittablePromotionProductItemFilterPlugin; diff --git a/src/Pyz/Zed/SalesReturnGui/SalesReturnGuiDependencyProvider.php b/src/Pyz/Zed/SalesReturnGui/SalesReturnGuiDependencyProvider.php index b41293841b..6bb390ddc8 100644 --- a/src/Pyz/Zed/SalesReturnGui/SalesReturnGuiDependencyProvider.php +++ b/src/Pyz/Zed/SalesReturnGui/SalesReturnGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesReturnGui; use Spryker\Zed\ProductBundle\Communication\Plugin\SalesReturnGui\ProductBundleReturnCreateFormHandlerPlugin; diff --git a/src/Pyz/Zed/SalesReturnSearch/SalesReturnSearchConfig.php b/src/Pyz/Zed/SalesReturnSearch/SalesReturnSearchConfig.php index ab06740b7a..ac518d6854 100644 --- a/src/Pyz/Zed/SalesReturnSearch/SalesReturnSearchConfig.php +++ b/src/Pyz/Zed/SalesReturnSearch/SalesReturnSearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SalesReturnSearch; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Scheduler/SchedulerDependencyProvider.php b/src/Pyz/Zed/Scheduler/SchedulerDependencyProvider.php index c29137cc9c..6d5c029e8b 100644 --- a/src/Pyz/Zed/Scheduler/SchedulerDependencyProvider.php +++ b/src/Pyz/Zed/Scheduler/SchedulerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Scheduler; use Pyz\Shared\Scheduler\SchedulerConfig; diff --git a/src/Pyz/Zed/Search/SearchDependencyProvider.php b/src/Pyz/Zed/Search/SearchDependencyProvider.php index fa873990e2..01c962d91e 100644 --- a/src/Pyz/Zed/Search/SearchDependencyProvider.php +++ b/src/Pyz/Zed/Search/SearchDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Search; use Spryker\Zed\Search\SearchDependencyProvider as SprykerSearchDependencyProvider; diff --git a/src/Pyz/Zed/SearchElasticsearch/SearchElasticsearchConfig.php b/src/Pyz/Zed/SearchElasticsearch/SearchElasticsearchConfig.php index 199f564c10..bc286a07e0 100644 --- a/src/Pyz/Zed/SearchElasticsearch/SearchElasticsearchConfig.php +++ b/src/Pyz/Zed/SearchElasticsearch/SearchElasticsearchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SearchElasticsearch; use Spryker\Zed\SearchElasticsearch\SearchElasticsearchConfig as SprykerSearchElasticsearchConfig; diff --git a/src/Pyz/Zed/SearchHttp/SearchHttpConfig.php b/src/Pyz/Zed/SearchHttp/SearchHttpConfig.php index c8ea51f502..b6c03ebbcf 100644 --- a/src/Pyz/Zed/SearchHttp/SearchHttpConfig.php +++ b/src/Pyz/Zed/SearchHttp/SearchHttpConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SearchHttp; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Security/SecurityDependencyProvider.php b/src/Pyz/Zed/Security/SecurityDependencyProvider.php index c8d69c3077..fa746d1820 100644 --- a/src/Pyz/Zed/Security/SecurityDependencyProvider.php +++ b/src/Pyz/Zed/Security/SecurityDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Security; use Spryker\Zed\Security\SecurityDependencyProvider as SprykerSecurityDependencyProvider; diff --git a/src/Pyz/Zed/SecurityGui/SecurityGuiConfig.php b/src/Pyz/Zed/SecurityGui/SecurityGuiConfig.php index beec54472c..f4286da609 100644 --- a/src/Pyz/Zed/SecurityGui/SecurityGuiConfig.php +++ b/src/Pyz/Zed/SecurityGui/SecurityGuiConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SecurityGui; use Spryker\Zed\SecurityGui\SecurityGuiConfig as SprykerSecurityGuiConfig; diff --git a/src/Pyz/Zed/SecurityGui/SecurityGuiDependencyProvider.php b/src/Pyz/Zed/SecurityGui/SecurityGuiDependencyProvider.php index 1eab94edeb..69080ae630 100644 --- a/src/Pyz/Zed/SecurityGui/SecurityGuiDependencyProvider.php +++ b/src/Pyz/Zed/SecurityGui/SecurityGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SecurityGui; use Spryker\Zed\SecurityGui\SecurityGuiDependencyProvider as SprykerSecurityGuiDependencyProvider; diff --git a/src/Pyz/Zed/Session/SessionDependencyProvider.php b/src/Pyz/Zed/Session/SessionDependencyProvider.php index 60244af19b..4c1d63944b 100644 --- a/src/Pyz/Zed/Session/SessionDependencyProvider.php +++ b/src/Pyz/Zed/Session/SessionDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Session; use Spryker\Zed\Session\SessionDependencyProvider as SprykerSessionDependencyProvider; diff --git a/src/Pyz/Zed/SessionUserValidation/SessionUserValidationDependencyProvider.php b/src/Pyz/Zed/SessionUserValidation/SessionUserValidationDependencyProvider.php index 57bfb64785..30d1e6e1c8 100644 --- a/src/Pyz/Zed/SessionUserValidation/SessionUserValidationDependencyProvider.php +++ b/src/Pyz/Zed/SessionUserValidation/SessionUserValidationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SessionUserValidation; use Spryker\Zed\SessionRedis\Communication\Plugin\SessionUserValidation\SessionRedisSessionUserSaverPlugin; diff --git a/src/Pyz/Zed/Setup/SetupConfig.php b/src/Pyz/Zed/Setup/SetupConfig.php index 118bf74a82..29446c3308 100644 --- a/src/Pyz/Zed/Setup/SetupConfig.php +++ b/src/Pyz/Zed/Setup/SetupConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Setup; use Spryker\Zed\Cache\Communication\Console\EmptyAllCachesConsole; diff --git a/src/Pyz/Zed/SetupFrontend/SetupFrontendConfig.php b/src/Pyz/Zed/SetupFrontend/SetupFrontendConfig.php index 271513d997..1941367b68 100644 --- a/src/Pyz/Zed/SetupFrontend/SetupFrontendConfig.php +++ b/src/Pyz/Zed/SetupFrontend/SetupFrontendConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SetupFrontend; use Spryker\Zed\SetupFrontend\SetupFrontendConfig as SprykerSetupFrontendConfig; diff --git a/src/Pyz/Zed/Shipment/ShipmentConfig.php b/src/Pyz/Zed/Shipment/ShipmentConfig.php index e2adc4b3f6..c4c5dff5cb 100644 --- a/src/Pyz/Zed/Shipment/ShipmentConfig.php +++ b/src/Pyz/Zed/Shipment/ShipmentConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Shipment; use Spryker\Zed\Shipment\ShipmentConfig as SprykerShipmentConfig; diff --git a/src/Pyz/Zed/Shipment/ShipmentDependencyProvider.php b/src/Pyz/Zed/Shipment/ShipmentDependencyProvider.php index c24abc0f8a..ad26878620 100644 --- a/src/Pyz/Zed/Shipment/ShipmentDependencyProvider.php +++ b/src/Pyz/Zed/Shipment/ShipmentDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Shipment; use Spryker\Zed\GiftCard\Communication\Plugin\Shipment\GiftCardShipmentGroupMethodFilterPlugin; @@ -18,7 +20,7 @@ class ShipmentDependencyProvider extends SprykerShipmentDependencyProvider * * @return array<\Spryker\Zed\Shipment\Communication\Plugin\ShipmentMethodAvailabilityPluginInterface>|array<\Spryker\Zed\ShipmentExtension\Dependency\Plugin\ShipmentMethodAvailabilityPluginInterface> */ - protected function getAvailabilityPlugins(Container $container): array + protected function getAvailabilityPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return []; } @@ -28,7 +30,7 @@ protected function getAvailabilityPlugins(Container $container): array * * @return array<\Spryker\Zed\Shipment\Communication\Plugin\ShipmentMethodPricePluginInterface>|array<\Spryker\Zed\ShipmentExtension\Dependency\Plugin\ShipmentMethodPricePluginInterface> */ - protected function getPricePlugins(Container $container): array + protected function getPricePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return []; } @@ -38,7 +40,7 @@ protected function getPricePlugins(Container $container): array * * @return array<\Spryker\Zed\Shipment\Communication\Plugin\ShipmentMethodDeliveryTimePluginInterface>|array<\Spryker\Zed\ShipmentExtension\Dependency\Plugin\ShipmentMethodDeliveryTimePluginInterface> */ - protected function getDeliveryTimePlugins(Container $container): array + protected function getDeliveryTimePlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return []; } @@ -48,7 +50,7 @@ protected function getDeliveryTimePlugins(Container $container): array * * @return array<\Spryker\Zed\ShipmentExtension\Dependency\Plugin\ShipmentMethodFilterPluginInterface> */ - protected function getMethodFilterPlugins(Container $container): array + protected function getMethodFilterPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new GiftCardShipmentGroupMethodFilterPlugin(), diff --git a/src/Pyz/Zed/ShipmentGui/ShipmentGuiDependencyProvider.php b/src/Pyz/Zed/ShipmentGui/ShipmentGuiDependencyProvider.php index c9d68d7884..47e5a95047 100644 --- a/src/Pyz/Zed/ShipmentGui/ShipmentGuiDependencyProvider.php +++ b/src/Pyz/Zed/ShipmentGui/ShipmentGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ShipmentGui; use Spryker\Zed\Kernel\Communication\Form\FormTypeInterface; @@ -20,7 +22,7 @@ class ShipmentGuiDependencyProvider extends SprykerShipmentGuiDependencyProvider * * @return \Spryker\Zed\Kernel\Communication\Form\FormTypeInterface */ - protected function getMoneyCollectionFormTypePlugin(Container $container): FormTypeInterface + protected function getMoneyCollectionFormTypePlugin(Container $container): FormTypeInterface // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return new MoneyCollectionFormTypePlugin(); } diff --git a/src/Pyz/Zed/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php b/src/Pyz/Zed/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php index 08f68f07e4..3d4951bfde 100644 --- a/src/Pyz/Zed/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php +++ b/src/Pyz/Zed/ShipmentsRestApi/ShipmentsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ShipmentsRestApi; use Spryker\Zed\CustomersRestApi\Communication\Plugin\ShipmentsRestApi\CustomerAddressProviderStrategyPlugin; diff --git a/src/Pyz/Zed/StateMachine/StateMachineDependencyProvider.php b/src/Pyz/Zed/StateMachine/StateMachineDependencyProvider.php index 3b98a0dfbe..f2935a9174 100644 --- a/src/Pyz/Zed/StateMachine/StateMachineDependencyProvider.php +++ b/src/Pyz/Zed/StateMachine/StateMachineDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\StateMachine; use Pyz\Zed\ExampleStateMachine\Communication\Plugin\TestStateMachineHandlerPlugin; diff --git a/src/Pyz/Zed/Stock/StockConfig.php b/src/Pyz/Zed/Stock/StockConfig.php index d5ed155ab1..7530b98c97 100644 --- a/src/Pyz/Zed/Stock/StockConfig.php +++ b/src/Pyz/Zed/Stock/StockConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Stock; use Spryker\Zed\Stock\StockConfig as SprykerStockConfig; diff --git a/src/Pyz/Zed/Stock/StockDependencyProvider.php b/src/Pyz/Zed/Stock/StockDependencyProvider.php index 03c90a491d..b09ad436b1 100644 --- a/src/Pyz/Zed/Stock/StockDependencyProvider.php +++ b/src/Pyz/Zed/Stock/StockDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Stock; use Spryker\Zed\Availability\Communication\Plugin\Stock\AvailabilityStockUpdateHandlerPlugin; @@ -22,7 +24,7 @@ class StockDependencyProvider extends SprykerStockDependencyProvider * * @return array<\Spryker\Zed\StockExtension\Dependency\Plugin\StockUpdateHandlerPluginInterface> */ - protected function getStockUpdateHandlerPlugins(Container $container): array + protected function getStockUpdateHandlerPlugins(Container $container): array // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { return [ new AvailabilityStockUpdateHandlerPlugin(), diff --git a/src/Pyz/Zed/StockGui/StockGuiDependencyProvider.php b/src/Pyz/Zed/StockGui/StockGuiDependencyProvider.php index ebe704fd46..6f6db3a0ae 100644 --- a/src/Pyz/Zed/StockGui/StockGuiDependencyProvider.php +++ b/src/Pyz/Zed/StockGui/StockGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\StockGui; use Spryker\Zed\Kernel\Communication\Form\FormTypeInterface; diff --git a/src/Pyz/Zed/Store/StoreConfig.php b/src/Pyz/Zed/Store/StoreConfig.php index fb623f1bfe..da871b25db 100644 --- a/src/Pyz/Zed/Store/StoreConfig.php +++ b/src/Pyz/Zed/Store/StoreConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Store; use Spryker\Zed\Store\StoreConfig as SprykerStoreConfig; diff --git a/src/Pyz/Zed/Store/StoreDependencyProvider.php b/src/Pyz/Zed/Store/StoreDependencyProvider.php index 96810a5d6e..3a4b23ad24 100644 --- a/src/Pyz/Zed/Store/StoreDependencyProvider.php +++ b/src/Pyz/Zed/Store/StoreDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Store; use Spryker\Zed\Country\Communication\Plugin\Store\CountryStoreCollectionExpanderPlugin; diff --git a/src/Pyz/Zed/StoreGui/StoreGuiDependencyProvider.php b/src/Pyz/Zed/StoreGui/StoreGuiDependencyProvider.php index 4f3c5e1d12..bab0a5ce89 100644 --- a/src/Pyz/Zed/StoreGui/StoreGuiDependencyProvider.php +++ b/src/Pyz/Zed/StoreGui/StoreGuiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\StoreGui; use Spryker\Zed\CountryGui\Communication\Plugin\StoreGui\AssignedCountriesStoreViewExpanderPlugin; diff --git a/src/Pyz/Zed/StoreStorage/StoreStorageConfig.php b/src/Pyz/Zed/StoreStorage/StoreStorageConfig.php index aba332dc23..ba1f189d74 100644 --- a/src/Pyz/Zed/StoreStorage/StoreStorageConfig.php +++ b/src/Pyz/Zed/StoreStorage/StoreStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\StoreStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Synchronization/SynchronizationConfig.php b/src/Pyz/Zed/Synchronization/SynchronizationConfig.php index 88e39118c7..890115039f 100644 --- a/src/Pyz/Zed/Synchronization/SynchronizationConfig.php +++ b/src/Pyz/Zed/Synchronization/SynchronizationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Synchronization; use Spryker\Zed\Synchronization\SynchronizationConfig as SprykerSynchronizationConfig; diff --git a/src/Pyz/Zed/Synchronization/SynchronizationDependencyProvider.php b/src/Pyz/Zed/Synchronization/SynchronizationDependencyProvider.php index 4dafbef806..477994db42 100644 --- a/src/Pyz/Zed/Synchronization/SynchronizationDependencyProvider.php +++ b/src/Pyz/Zed/Synchronization/SynchronizationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Synchronization; use Spryker\Zed\AssetStorage\Communication\Plugin\Synchronization\AssetStorageSynchronizationDataPlugin; diff --git a/src/Pyz/Zed/SynchronizationBehavior/SynchronizationBehaviorConfig.php b/src/Pyz/Zed/SynchronizationBehavior/SynchronizationBehaviorConfig.php index ae1d7bd86a..ea702dd461 100644 --- a/src/Pyz/Zed/SynchronizationBehavior/SynchronizationBehaviorConfig.php +++ b/src/Pyz/Zed/SynchronizationBehavior/SynchronizationBehaviorConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\SynchronizationBehavior; use Spryker\Zed\SynchronizationBehavior\SynchronizationBehaviorConfig as SprykerSynchronizationBehaviorConfig; diff --git a/src/Pyz/Zed/TaxApp/TaxAppDependencyProvider.php b/src/Pyz/Zed/TaxApp/TaxAppDependencyProvider.php index 06014f6b5c..c179f96827 100644 --- a/src/Pyz/Zed/TaxApp/TaxAppDependencyProvider.php +++ b/src/Pyz/Zed/TaxApp/TaxAppDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\TaxApp; use Spryker\Zed\Calculation\Communication\Plugin\Calculator\ItemTaxAmountFullAggregatorPlugin; diff --git a/src/Pyz/Zed/TaxProductConnector/TaxProductConnectorDependencyProvider.php b/src/Pyz/Zed/TaxProductConnector/TaxProductConnectorDependencyProvider.php index e86ed1b236..daf2ed99a0 100644 --- a/src/Pyz/Zed/TaxProductConnector/TaxProductConnectorDependencyProvider.php +++ b/src/Pyz/Zed/TaxProductConnector/TaxProductConnectorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\TaxProductConnector; use Spryker\Zed\Customer\Communication\Plugin\TaxProductConnector\CustomerAddressShippingAddressValidatorPlugin; diff --git a/src/Pyz/Zed/TaxProductStorage/TaxProductStorageConfig.php b/src/Pyz/Zed/TaxProductStorage/TaxProductStorageConfig.php index b6222541ed..c24a250456 100644 --- a/src/Pyz/Zed/TaxProductStorage/TaxProductStorageConfig.php +++ b/src/Pyz/Zed/TaxProductStorage/TaxProductStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\TaxProductStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/TaxStorage/TaxStorageConfig.php b/src/Pyz/Zed/TaxStorage/TaxStorageConfig.php index ef7733af6e..d64872071c 100644 --- a/src/Pyz/Zed/TaxStorage/TaxStorageConfig.php +++ b/src/Pyz/Zed/TaxStorage/TaxStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\TaxStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/Touch/TouchConfig.php b/src/Pyz/Zed/Touch/TouchConfig.php index de82cca645..352f5f814e 100644 --- a/src/Pyz/Zed/Touch/TouchConfig.php +++ b/src/Pyz/Zed/Touch/TouchConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Touch; use Spryker\Zed\Touch\TouchConfig as SprykerTouchConfig; diff --git a/src/Pyz/Zed/Transfer/TransferConfig.php b/src/Pyz/Zed/Transfer/TransferConfig.php index c7b557420e..0f107c0e22 100644 --- a/src/Pyz/Zed/Transfer/TransferConfig.php +++ b/src/Pyz/Zed/Transfer/TransferConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Transfer; use Spryker\Shared\Transfer\TransferConstants; diff --git a/src/Pyz/Zed/Twig/TwigDependencyProvider.php b/src/Pyz/Zed/Twig/TwigDependencyProvider.php index 4fee398f76..4ebe4744bd 100644 --- a/src/Pyz/Zed/Twig/TwigDependencyProvider.php +++ b/src/Pyz/Zed/Twig/TwigDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Twig; use Spryker\Service\UtilDateTime\Plugin\Twig\DateTimeFormatterTwigPlugin; diff --git a/src/Pyz/Zed/Url/UrlDependencyProvider.php b/src/Pyz/Zed/Url/UrlDependencyProvider.php index 5f86f14f45..2bf36a96f6 100644 --- a/src/Pyz/Zed/Url/UrlDependencyProvider.php +++ b/src/Pyz/Zed/Url/UrlDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Url; use Spryker\Zed\Navigation\Communication\Plugin\DetachNavigationUrlAfterUrlDeletePlugin; diff --git a/src/Pyz/Zed/UrlStorage/UrlStorageConfig.php b/src/Pyz/Zed/UrlStorage/UrlStorageConfig.php index 3e718a72bb..7b779422ff 100644 --- a/src/Pyz/Zed/UrlStorage/UrlStorageConfig.php +++ b/src/Pyz/Zed/UrlStorage/UrlStorageConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\UrlStorage; use Pyz\Zed\Synchronization\SynchronizationConfig; diff --git a/src/Pyz/Zed/User/UserConfig.php b/src/Pyz/Zed/User/UserConfig.php index 25380fc5e0..62895a41b2 100644 --- a/src/Pyz/Zed/User/UserConfig.php +++ b/src/Pyz/Zed/User/UserConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\User; use Spryker\Zed\User\UserConfig as SprykerUserConfig; diff --git a/src/Pyz/Zed/User/UserDependencyProvider.php b/src/Pyz/Zed/User/UserDependencyProvider.php index 048893272e..f209e9d9e7 100644 --- a/src/Pyz/Zed/User/UserDependencyProvider.php +++ b/src/Pyz/Zed/User/UserDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\User; use Spryker\Zed\Acl\Communication\Plugin\GroupPlugin; @@ -30,7 +32,7 @@ class UserDependencyProvider extends SprykerUserDependencyProvider */ protected function addGroupPlugin(Container $container): Container { - $container->set(static::PLUGIN_GROUP, function (Container $container) { + $container->set(static::PLUGIN_GROUP, function (Container $container) { // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter return new GroupPlugin(); }); diff --git a/src/Pyz/Zed/UserPasswordReset/UserPasswordResetDependencyProvider.php b/src/Pyz/Zed/UserPasswordReset/UserPasswordResetDependencyProvider.php index 7dd330f009..f30545b60f 100644 --- a/src/Pyz/Zed/UserPasswordReset/UserPasswordResetDependencyProvider.php +++ b/src/Pyz/Zed/UserPasswordReset/UserPasswordResetDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\UserPasswordReset; use Spryker\Zed\UserPasswordReset\UserPasswordResetDependencyProvider as SprykerUserPasswordResetDependencyProvider; diff --git a/src/Pyz/Zed/Validator/ValidatorDependencyProvider.php b/src/Pyz/Zed/Validator/ValidatorDependencyProvider.php index 6b9a331ff2..664da12c34 100644 --- a/src/Pyz/Zed/Validator/ValidatorDependencyProvider.php +++ b/src/Pyz/Zed/Validator/ValidatorDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Validator; use Spryker\Zed\Security\Communication\Plugin\Validator\ZedUserPasswordValidatorConstraintPlugin; diff --git a/src/Pyz/Zed/Vault/VaultConfig.php b/src/Pyz/Zed/Vault/VaultConfig.php index 01a4ab1277..024d050ae2 100644 --- a/src/Pyz/Zed/Vault/VaultConfig.php +++ b/src/Pyz/Zed/Vault/VaultConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Vault; use Spryker\Zed\Vault\VaultConfig as SprykerVaultConfig; diff --git a/src/Pyz/Zed/WarehouseAllocation/WarehouseAllocationDependencyProvider.php b/src/Pyz/Zed/WarehouseAllocation/WarehouseAllocationDependencyProvider.php index 6bff0904f9..0d44a14153 100644 --- a/src/Pyz/Zed/WarehouseAllocation/WarehouseAllocationDependencyProvider.php +++ b/src/Pyz/Zed/WarehouseAllocation/WarehouseAllocationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\WarehouseAllocation; use Spryker\Zed\ProductWarehouseAllocationExample\Communication\Plugin\WarehouseAllocation\ProductSalesOrderWarehouseAllocationPlugin; diff --git a/src/Pyz/Zed/WebProfiler/WebProfilerDependencyProvider.php b/src/Pyz/Zed/WebProfiler/WebProfilerDependencyProvider.php index 4681b07eb2..9b9d4c2326 100644 --- a/src/Pyz/Zed/WebProfiler/WebProfilerDependencyProvider.php +++ b/src/Pyz/Zed/WebProfiler/WebProfilerDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\WebProfiler; use Spryker\Zed\Config\Communication\Plugin\WebProfiler\WebProfilerConfigDataCollectorPlugin; diff --git a/src/Pyz/Zed/Wishlist/WishlistDependencyProvider.php b/src/Pyz/Zed/Wishlist/WishlistDependencyProvider.php index cd7e86c12e..91ab51941d 100644 --- a/src/Pyz/Zed/Wishlist/WishlistDependencyProvider.php +++ b/src/Pyz/Zed/Wishlist/WishlistDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\Wishlist; use Spryker\Zed\ProductConfigurationWishlist\Communication\Plugin\Wishlist\ProductConfigurationItemExpanderPlugin; diff --git a/src/Pyz/Zed/WishlistsRestApi/WishlistsRestApiDependencyProvider.php b/src/Pyz/Zed/WishlistsRestApi/WishlistsRestApiDependencyProvider.php index d9d9d738ce..fa9ed03e6d 100644 --- a/src/Pyz/Zed/WishlistsRestApi/WishlistsRestApiDependencyProvider.php +++ b/src/Pyz/Zed/WishlistsRestApi/WishlistsRestApiDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\WishlistsRestApi; use Spryker\Zed\ProductConfigurationWishlistsRestApi\Communication\Plugin\WishlistsRestApi\ProductConfigurationRestWishlistItemsAttributesDeleteStrategyPlugin; diff --git a/src/Pyz/Zed/ZedNavigation/ZedNavigationConfig.php b/src/Pyz/Zed/ZedNavigation/ZedNavigationConfig.php index c6fe94b2e6..4ceaa5bb79 100644 --- a/src/Pyz/Zed/ZedNavigation/ZedNavigationConfig.php +++ b/src/Pyz/Zed/ZedNavigation/ZedNavigationConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ZedNavigation; use Spryker\Zed\ZedNavigation\ZedNavigationConfig as SprykerZedNavigationConfig; diff --git a/src/Pyz/Zed/ZedNavigation/ZedNavigationDependencyProvider.php b/src/Pyz/Zed/ZedNavigation/ZedNavigationDependencyProvider.php index 045351fbb9..de8aeb2c1f 100644 --- a/src/Pyz/Zed/ZedNavigation/ZedNavigationDependencyProvider.php +++ b/src/Pyz/Zed/ZedNavigation/ZedNavigationDependencyProvider.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace Pyz\Zed\ZedNavigation; use Spryker\Zed\Acl\Communication\Plugin\Navigation\AclNavigationItemCollectionFilterPlugin; diff --git a/src/SprykerConfig/CodeBucketConfig.php b/src/SprykerConfig/CodeBucketConfig.php index 477cfdc770..7365682d32 100644 --- a/src/SprykerConfig/CodeBucketConfig.php +++ b/src/SprykerConfig/CodeBucketConfig.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace SprykerConfig; use Spryker\Shared\Kernel\CodeBucket\Config\AbstractCodeBucketConfig; diff --git a/tests/PhpStan/DynamicType/AbstractSprykerDynamicTypeExtension.php b/tests/PhpStan/DynamicType/AbstractSprykerDynamicTypeExtension.php index fef6856edf..c52d24d267 100644 --- a/tests/PhpStan/DynamicType/AbstractSprykerDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/AbstractSprykerDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use Exception; @@ -45,7 +47,7 @@ public function isMethodSupported(MethodReflection $methodReflection): bool * * @return \PHPStan\Type\Type */ - public function getTypeFromMethodCall(MethodReflection $methodReflection, MethodCall $methodCall, Scope $scope): Type + public function getTypeFromMethodCall(MethodReflection $methodReflection, MethodCall $methodCall, Scope $scope): Type // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $docComment = $scope->getClassReflection()->getNativeReflection()->getDocComment(); diff --git a/tests/PhpStan/DynamicType/ClientDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ClientDynamicTypeExtension.php index 7da097be4f..98bd831453 100644 --- a/tests/PhpStan/DynamicType/ClientDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ClientDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ClientPluginDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ClientPluginDynamicTypeExtension.php index b2c3824014..28d908c467 100644 --- a/tests/PhpStan/DynamicType/ClientPluginDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ClientPluginDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ConfigDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ConfigDynamicTypeExtension.php index e8494bc6cb..129402539b 100644 --- a/tests/PhpStan/DynamicType/ConfigDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ConfigDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ConsoleDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ConsoleDynamicTypeExtension.php index 9010b72f6d..2f7f369274 100644 --- a/tests/PhpStan/DynamicType/ConsoleDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ConsoleDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ControllerDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ControllerDynamicTypeExtension.php index 8e133062a7..68e101c370 100644 --- a/tests/PhpStan/DynamicType/ControllerDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ControllerDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/FacadeDynamicTypeExtension.php b/tests/PhpStan/DynamicType/FacadeDynamicTypeExtension.php index a660d98463..3aca13120e 100644 --- a/tests/PhpStan/DynamicType/FacadeDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/FacadeDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/PluginDynamicTypeExtension.php b/tests/PhpStan/DynamicType/PluginDynamicTypeExtension.php index f6b83a0c65..40d4a1fb28 100644 --- a/tests/PhpStan/DynamicType/PluginDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/PluginDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/QueryContainerDynamicTypeExtension.php b/tests/PhpStan/DynamicType/QueryContainerDynamicTypeExtension.php index c9f0d3c196..7cf04b1c75 100644 --- a/tests/PhpStan/DynamicType/QueryContainerDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/QueryContainerDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ServiceDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ServiceDynamicTypeExtension.php index 286e799af5..7f9a570fd7 100644 --- a/tests/PhpStan/DynamicType/ServiceDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ServiceDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/YvesFactoryDynamicTypeExtension.php b/tests/PhpStan/DynamicType/YvesFactoryDynamicTypeExtension.php index 27ecd3a8dd..5c65e91512 100644 --- a/tests/PhpStan/DynamicType/YvesFactoryDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/YvesFactoryDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/YvesFormTypeDynamicTypeExtension.php b/tests/PhpStan/DynamicType/YvesFormTypeDynamicTypeExtension.php index d3586d2140..9e9e6035c5 100644 --- a/tests/PhpStan/DynamicType/YvesFormTypeDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/YvesFormTypeDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ZedFactoryDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ZedFactoryDynamicTypeExtension.php index d9e1819446..03c87de3ad 100644 --- a/tests/PhpStan/DynamicType/ZedFactoryDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ZedFactoryDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PhpStan/DynamicType/ZedFormTypeDynamicTypeExtension.php b/tests/PhpStan/DynamicType/ZedFormTypeDynamicTypeExtension.php index 7dfca1b3ec..0685eff50d 100644 --- a/tests/PhpStan/DynamicType/ZedFormTypeDynamicTypeExtension.php +++ b/tests/PhpStan/DynamicType/ZedFormTypeDynamicTypeExtension.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PhpStan\DynamicType; use PHPStan\Type\DynamicMethodReturnTypeExtension; diff --git a/tests/PyzTest/Glue/AgentAuth/RestApi/AgentAccessTokensRestApiCest.php b/tests/PyzTest/Glue/AgentAuth/RestApi/AgentAccessTokensRestApiCest.php index 9e99e196e7..1631cd9f23 100644 --- a/tests/PyzTest/Glue/AgentAuth/RestApi/AgentAccessTokensRestApiCest.php +++ b/tests/PyzTest/Glue/AgentAuth/RestApi/AgentAccessTokensRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AgentAuth\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/AgentAuth/RestApi/Fixtures/AgentAccessTokensRestApiFixtures.php b/tests/PyzTest/Glue/AgentAuth/RestApi/Fixtures/AgentAccessTokensRestApiFixtures.php index 64661f1e01..2a9f63ad37 100644 --- a/tests/PyzTest/Glue/AgentAuth/RestApi/Fixtures/AgentAccessTokensRestApiFixtures.php +++ b/tests/PyzTest/Glue/AgentAuth/RestApi/Fixtures/AgentAccessTokensRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AgentAuth\RestApi\Fixtures; use Generated\Shared\Transfer\UserTransfer; diff --git a/tests/PyzTest/Glue/AgentAuth/_support/AgentAuthRestApiTester.php b/tests/PyzTest/Glue/AgentAuth/_support/AgentAuthRestApiTester.php index 0f3ae79ca7..0957b8a067 100644 --- a/tests/PyzTest/Glue/AgentAuth/_support/AgentAuthRestApiTester.php +++ b/tests/PyzTest/Glue/AgentAuth/_support/AgentAuthRestApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AgentAuth; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiCest.php b/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiCest.php index 2091938d8e..2accd90abf 100644 --- a/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiCest.php +++ b/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AlternativeProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiFixtures.php b/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiFixtures.php index 1c99375fee..fc82d4a824 100644 --- a/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/AlternativeProducts/RestApi/AbstractAlternativeProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AlternativeProducts\RestApi; use Generated\Shared\Transfer\ProductConcreteTransfer; diff --git a/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiCest.php b/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiCest.php index 0ea7e815d0..f1dedd0b54 100644 --- a/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiCest.php +++ b/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AlternativeProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiFixtures.php b/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiFixtures.php index 4427bb38f5..d6918baef7 100644 --- a/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/AlternativeProducts/RestApi/ConcreteAlternativeProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AlternativeProducts\RestApi; use Generated\Shared\Transfer\ProductConcreteTransfer; diff --git a/tests/PyzTest/Glue/AlternativeProducts/_support/AlternativeProductsRestApiTester.php b/tests/PyzTest/Glue/AlternativeProducts/_support/AlternativeProductsRestApiTester.php index e6d0ee4264..9fabefa129 100644 --- a/tests/PyzTest/Glue/AlternativeProducts/_support/AlternativeProductsRestApiTester.php +++ b/tests/PyzTest/Glue/AlternativeProducts/_support/AlternativeProductsRestApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AlternativeProducts; use Spryker\Glue\AlternativeProductsRestApi\AlternativeProductsRestApiConfig; diff --git a/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiCest.php b/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiCest.php index dd49a392c3..7387a4572d 100644 --- a/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiCest.php +++ b/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Auth\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiFixtures.php b/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiFixtures.php index 14d4c4c1df..42948a5cfb 100644 --- a/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiFixtures.php +++ b/tests/PyzTest/Glue/Auth/RestApi/AccessTokensRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Auth\RestApi; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiCest.php b/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiCest.php index 14ada60e9a..65e122cb0d 100644 --- a/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiCest.php +++ b/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Auth\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiFixtures.php b/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiFixtures.php index 32b4c5efcb..cd3af2204c 100644 --- a/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiFixtures.php +++ b/tests/PyzTest/Glue/Auth/RestApi/RefreshTokensRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Auth\RestApi; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Auth/_support/AuthRestApiTester.php b/tests/PyzTest/Glue/Auth/_support/AuthRestApiTester.php index b6f786c4ee..0cd21e4793 100644 --- a/tests/PyzTest/Glue/Auth/_support/AuthRestApiTester.php +++ b/tests/PyzTest/Glue/Auth/_support/AuthRestApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Auth; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/AvailabilityNotificationsRestApiCest.php b/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/AvailabilityNotificationsRestApiCest.php index f9fe77e3d6..f1fbc2939f 100644 --- a/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/AvailabilityNotificationsRestApiCest.php +++ b/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/AvailabilityNotificationsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AvailabilityNotifications\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/Fixtures/AvailabilityNotificationsApiFixtures.php b/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/Fixtures/AvailabilityNotificationsApiFixtures.php index fe8e991121..dede99bd83 100644 --- a/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/Fixtures/AvailabilityNotificationsApiFixtures.php +++ b/tests/PyzTest/Glue/AvailabilityNotifications/RestApi/Fixtures/AvailabilityNotificationsApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AvailabilityNotifications\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/AvailabilityNotifications/_support/AvailabilityNotificationsRestApiTester.php b/tests/PyzTest/Glue/AvailabilityNotifications/_support/AvailabilityNotificationsRestApiTester.php index 25fd80e6b1..4f1a8ec43f 100644 --- a/tests/PyzTest/Glue/AvailabilityNotifications/_support/AvailabilityNotificationsRestApiTester.php +++ b/tests/PyzTest/Glue/AvailabilityNotifications/_support/AvailabilityNotificationsRestApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\AvailabilityNotifications; use Spryker\Glue\AvailabilityNotificationsRestApi\AvailabilityNotificationsRestApiConfig; diff --git a/tests/PyzTest/Glue/Carts/RestApi/CartsRestApiCest.php b/tests/PyzTest/Glue/Carts/RestApi/CartsRestApiCest.php index 26144b181a..c20e8b8ceb 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/CartsRestApiCest.php +++ b/tests/PyzTest/Glue/Carts/RestApi/CartsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Carts/RestApi/ConvertGuestCartToCustomerCartRestApiCest.php b/tests/PyzTest/Glue/Carts/RestApi/ConvertGuestCartToCustomerCartRestApiCest.php index 96c89fb49b..c763defee3 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/ConvertGuestCartToCustomerCartRestApiCest.php +++ b/tests/PyzTest/Glue/Carts/RestApi/ConvertGuestCartToCustomerCartRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixtures.php b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixtures.php index 7d7d3151e5..8f3127f21f 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixtures.php +++ b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixturesTrait.php b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixturesTrait.php index 683a6ca7ed..c46635f234 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixturesTrait.php +++ b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/CartsRestApiFixturesTrait.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/ConvertGuestCartToCustomerCartRestApiFixtures.php b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/ConvertGuestCartToCustomerCartRestApiFixtures.php index cc8706be71..a3e427b7d6 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/ConvertGuestCartToCustomerCartRestApiFixtures.php +++ b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/ConvertGuestCartToCustomerCartRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/GuestCartsRestApiFixtures.php b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/GuestCartsRestApiFixtures.php index 258b37ea4d..36cef8cf4e 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/Fixtures/GuestCartsRestApiFixtures.php +++ b/tests/PyzTest/Glue/Carts/RestApi/Fixtures/GuestCartsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi\Fixtures; use Generated\Shared\Transfer\ProductConcreteTransfer; diff --git a/tests/PyzTest/Glue/Carts/RestApi/GuestCartsRestApiCest.php b/tests/PyzTest/Glue/Carts/RestApi/GuestCartsRestApiCest.php index ff2bb8479f..63e797f542 100644 --- a/tests/PyzTest/Glue/Carts/RestApi/GuestCartsRestApiCest.php +++ b/tests/PyzTest/Glue/Carts/RestApi/GuestCartsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts\RestApi; use Codeception\Util\HttpCode; @@ -291,7 +293,7 @@ public function requestGuestCartByNotExistingGuestCartUuid(CartsApiTester $I): v public function requestCreateGuestCart(CartsApiTester $I): void { // Arrange - $I->haveHttpHeader(CartsRestApiConfig::HEADER_ANONYMOUS_CUSTOMER_UNIQUE_ID, uniqid(123, true)); + $I->haveHttpHeader(CartsRestApiConfig::HEADER_ANONYMOUS_CUSTOMER_UNIQUE_ID, uniqid('123', true)); // Act $I->sendPOST( diff --git a/tests/PyzTest/Glue/Carts/_support/CartsApiTester.php b/tests/PyzTest/Glue/Carts/_support/CartsApiTester.php index 30ca146dac..444230bb0a 100644 --- a/tests/PyzTest/Glue/Carts/_support/CartsApiTester.php +++ b/tests/PyzTest/Glue/Carts/_support/CartsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Carts; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiCest.php b/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiCest.php index 58b889c10b..8e8223d5b7 100644 --- a/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiCest.php +++ b/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Categories\RestApi; use PyzTest\Glue\Categories\CategoriesRestApiTester; diff --git a/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiFixtures.php b/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiFixtures.php index 2f7171ff37..8783ff560c 100644 --- a/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiFixtures.php +++ b/tests/PyzTest/Glue/Categories/RestApi/CategoriesRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Categories\RestApi; use Generated\Shared\Transfer\CategoryTransfer; diff --git a/tests/PyzTest/Glue/Categories/_support/CategoriesRestApiTester.php b/tests/PyzTest/Glue/Categories/_support/CategoriesRestApiTester.php index 7ba9c62e4a..84503ee204 100644 --- a/tests/PyzTest/Glue/Categories/_support/CategoriesRestApiTester.php +++ b/tests/PyzTest/Glue/Categories/_support/CategoriesRestApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Categories; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRelationshipsCest.php b/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRelationshipsCest.php index 297475e113..1ddf4c8791 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRelationshipsCest.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRelationshipsCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRestApiCest.php b/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRestApiCest.php index 51d008614b..cf3b1fcc2e 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRestApiCest.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/CheckoutDataRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/CheckoutRestApiCest.php b/tests/PyzTest/Glue/Checkout/RestApi/CheckoutRestApiCest.php index 19c351c05a..5b147ccf7b 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/CheckoutRestApiCest.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/CheckoutRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataRestApiFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataRestApiFixtures.php index 2258a1175d..b8648792dc 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataRestApiFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\AddressTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataShipmentRelationshipsFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataShipmentRelationshipsFixtures.php index 0143fcac2b..959b624e6c 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataShipmentRelationshipsFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutDataShipmentRelationshipsFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutRestApiFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutRestApiFixtures.php index 26e35c8fc2..b294041642 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutRestApiFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/CheckoutRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\AddressTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataRestApiFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataRestApiFixtures.php index 53873013a6..ae48e70359 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataRestApiFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataShipmentRelationshipsFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataShipmentRelationshipsFixtures.php index 93d096be4c..a5f7f3cb3d 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataShipmentRelationshipsFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutDataShipmentRelationshipsFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutRestApiFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutRestApiFixtures.php index a1741c897f..19b3abf8d3 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutRestApiFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/GuestCheckoutRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/PaymentMethodsFixtures.php b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/PaymentMethodsFixtures.php index c3480b29e4..4a367b4645 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/PaymentMethodsFixtures.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/Fixtures/PaymentMethodsFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi\Fixtures; use Generated\Shared\Transfer\PaymentMethodTransfer; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRelationshipsCest.php b/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRelationshipsCest.php index e8d2869a06..da3d1c11bb 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRelationshipsCest.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRelationshipsCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRestApiCest.php b/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRestApiCest.php index 7a838a7113..7661f6b302 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRestApiCest.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutDataRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutRestApiCest.php b/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutRestApiCest.php index 3de6b3c91b..a1b7b00db6 100644 --- a/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutRestApiCest.php +++ b/tests/PyzTest/Glue/Checkout/RestApi/GuestCheckoutRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Checkout/_support/CheckoutApiTester.php b/tests/PyzTest/Glue/Checkout/_support/CheckoutApiTester.php index b1182d6f72..7f1d1bd093 100644 --- a/tests/PyzTest/Glue/Checkout/_support/CheckoutApiTester.php +++ b/tests/PyzTest/Glue/Checkout/_support/CheckoutApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Checkout; use DateTime; diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerAddressesRestApiCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerAddressesRestApiCest.php index 10f063391f..caef3716a8 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerAddressesRestApiCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerAddressesRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerConfirmationCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerConfirmationCest.php index f9d29bdfd1..e5e4fcc2de 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerConfirmationCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerConfirmationCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerForgottenPasswordCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerForgottenPasswordCest.php index 7f746975b5..9d3eaf4f8a 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerForgottenPasswordCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerForgottenPasswordCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Example; @@ -88,9 +90,9 @@ public function requestPostCustomerForgottenPasswordFailsValidation(CustomerApiT $I->seeResponseMatchesOpenApiSchema(); foreach ($example['errors'] as $index => $error) { - $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], $index); - $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], $index); - $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], $index); + $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], (string)$index); + $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], (string)$index); + $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], (string)$index); } } diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerPasswordCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerPasswordCest.php index 90788f9e51..f0fc5a7bb5 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerPasswordCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerPasswordCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Example; @@ -182,9 +184,9 @@ public function requestPatchCustomerPasswordFailsValidation(CustomerApiTester $I $I->seeResponseMatchesOpenApiSchema(); foreach ($example['errors'] as $index => $error) { - $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], $index); - $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], $index); - $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], $index); + $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], (string)$index); + $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], (string)$index); + $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], (string)$index); } } diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerReadCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerReadCest.php index 7ef804a125..2bdf5381d1 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerReadCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerReadCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerRegistrationCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerRegistrationCest.php index dac85a72ed..1a0ddf9624 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerRegistrationCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerRegistrationCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Example; @@ -120,9 +122,9 @@ public function requestPostCustomerFailsValidation(CustomerApiTester $I, Example $I->seeResponseMatchesOpenApiSchema(); foreach ($example['errors'] as $index => $error) { - $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], $index); - $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], $index); - $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], $index); + $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], (string)$index); + $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], (string)$index); + $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], (string)$index); } } diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerRestApiFixtures.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerRestApiFixtures.php index f054d5450f..c4d09e398e 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerRestApiFixtures.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerRestorePasswordCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerRestorePasswordCest.php index c89060f813..6c5e97db3a 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerRestorePasswordCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerRestorePasswordCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Example; @@ -102,9 +104,9 @@ public function requestPatchCustomerPasswordFailsValidation(CustomerApiTester $I $I->seeResponseMatchesOpenApiSchema(); foreach ($example['errors'] as $index => $error) { - $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], $index); - $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], $index); - $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], $index); + $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], (string)$index); + $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], (string)$index); + $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], (string)$index); } } diff --git a/tests/PyzTest/Glue/Customer/RestApi/CustomerUpdateCest.php b/tests/PyzTest/Glue/Customer/RestApi/CustomerUpdateCest.php index 371cb56925..33a967ad05 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/CustomerUpdateCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/CustomerUpdateCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Example; @@ -345,9 +347,9 @@ public function requestPatchCustomerFailsValidation(CustomerApiTester $I, Exampl $I->seeResponseMatchesOpenApiSchema(); foreach ($example['errors'] as $index => $error) { - $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], $index); - $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], $index); - $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], $index); + $I->seeResponseErrorsHaveCode($error[RestErrorMessageTransfer::CODE], (string)$index); + $I->seeResponseErrorsHaveStatus($error[RestErrorMessageTransfer::STATUS], (string)$index); + $I->seeResponseErrorsHaveDetail($error[RestErrorMessageTransfer::DETAIL], (string)$index); } } diff --git a/tests/PyzTest/Glue/Customer/RestApi/DeleteMethodRestApiCest.php b/tests/PyzTest/Glue/Customer/RestApi/DeleteMethodRestApiCest.php index 53bf975b4e..d7a9e85c7d 100644 --- a/tests/PyzTest/Glue/Customer/RestApi/DeleteMethodRestApiCest.php +++ b/tests/PyzTest/Glue/Customer/RestApi/DeleteMethodRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Customer/_support/CustomerApiTester.php b/tests/PyzTest/Glue/Customer/_support/CustomerApiTester.php index 7b1eaf7af5..ada7079975 100644 --- a/tests/PyzTest/Glue/Customer/_support/CustomerApiTester.php +++ b/tests/PyzTest/Glue/Customer/_support/CustomerApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Customer; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/CustomerAccess/RestApi/CustomerAccessRestApiCest.php b/tests/PyzTest/Glue/CustomerAccess/RestApi/CustomerAccessRestApiCest.php index 4fbb323224..88ab3adfeb 100644 --- a/tests/PyzTest/Glue/CustomerAccess/RestApi/CustomerAccessRestApiCest.php +++ b/tests/PyzTest/Glue/CustomerAccess/RestApi/CustomerAccessRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\CustomerAccess\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/CustomerAccess/_support/CustomerAccessApiTester.php b/tests/PyzTest/Glue/CustomerAccess/_support/CustomerAccessApiTester.php index 3dd091e618..efb099b3b8 100644 --- a/tests/PyzTest/Glue/CustomerAccess/_support/CustomerAccessApiTester.php +++ b/tests/PyzTest/Glue/CustomerAccess/_support/CustomerAccessApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\CustomerAccess; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/OauthUserConnector/BackendApi/BackofficeUserScopeAuthorizeBackendApiCest.php b/tests/PyzTest/Glue/OauthUserConnector/BackendApi/BackofficeUserScopeAuthorizeBackendApiCest.php index fced3c56dc..8e3eb95818 100644 --- a/tests/PyzTest/Glue/OauthUserConnector/BackendApi/BackofficeUserScopeAuthorizeBackendApiCest.php +++ b/tests/PyzTest/Glue/OauthUserConnector/BackendApi/BackofficeUserScopeAuthorizeBackendApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\OauthUserConnector\BackendApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/OauthUserConnector/BackendApi/Fixtures/OauthUserConnectorBackendApiFixtures.php b/tests/PyzTest/Glue/OauthUserConnector/BackendApi/Fixtures/OauthUserConnectorBackendApiFixtures.php index 14a053478a..28f9a7cf04 100644 --- a/tests/PyzTest/Glue/OauthUserConnector/BackendApi/Fixtures/OauthUserConnectorBackendApiFixtures.php +++ b/tests/PyzTest/Glue/OauthUserConnector/BackendApi/Fixtures/OauthUserConnectorBackendApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\OauthUserConnector\BackendApi\Fixtures; use Generated\Shared\Transfer\UserTransfer; diff --git a/tests/PyzTest/Glue/OauthUserConnector/BackendApi/WarehouseUserScopeAuthorizeBackendApiCest.php b/tests/PyzTest/Glue/OauthUserConnector/BackendApi/WarehouseUserScopeAuthorizeBackendApiCest.php index 43344b7056..aa587a0410 100644 --- a/tests/PyzTest/Glue/OauthUserConnector/BackendApi/WarehouseUserScopeAuthorizeBackendApiCest.php +++ b/tests/PyzTest/Glue/OauthUserConnector/BackendApi/WarehouseUserScopeAuthorizeBackendApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\OauthUserConnector\BackendApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/OauthUserConnector/_support/OauthUserConnectorBackendApiTester.php b/tests/PyzTest/Glue/OauthUserConnector/_support/OauthUserConnectorBackendApiTester.php index fe9dfc9adc..50889492cc 100644 --- a/tests/PyzTest/Glue/OauthUserConnector/_support/OauthUserConnectorBackendApiTester.php +++ b/tests/PyzTest/Glue/OauthUserConnector/_support/OauthUserConnectorBackendApiTester.php @@ -5,7 +5,7 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ -declare(strict_types=1); +declare(strict_types = 1); namespace PyzTest\Glue\OauthUserConnector; diff --git a/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiCest.php b/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiCest.php index fc31c89b9c..3583ef5163 100644 --- a/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiCest.php +++ b/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Orders\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiFixtures.php b/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiFixtures.php index ffef736325..792132c5c9 100644 --- a/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiFixtures.php +++ b/tests/PyzTest/Glue/Orders/RestApi/OrdersRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Orders\RestApi; use Generated\Shared\DataBuilder\QuoteBuilder; diff --git a/tests/PyzTest/Glue/Orders/_support/OrdersApiTester.php b/tests/PyzTest/Glue/Orders/_support/OrdersApiTester.php index ea1f372c48..aba450fc5f 100644 --- a/tests/PyzTest/Glue/Orders/_support/OrdersApiTester.php +++ b/tests/PyzTest/Glue/Orders/_support/OrdersApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Orders; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListItemsBackendJsonApiFixtures.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListItemsBackendJsonApiFixtures.php index 9aee092b06..5b0658ab97 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListItemsBackendJsonApiFixtures.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListItemsBackendJsonApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi\Fixtures; use Generated\Shared\Transfer\PickingListTransfer; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListsBackendJsonApiFixtures.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListsBackendJsonApiFixtures.php index 68591d79e4..46f10efa2a 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListsBackendJsonApiFixtures.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/PickingListsBackendJsonApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi\Fixtures; use Generated\Shared\DataBuilder\ProductImageBuilder; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/StartPickingBackendJsonApiFixtures.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/StartPickingBackendJsonApiFixtures.php index b0c545f859..78f0e9164d 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/StartPickingBackendJsonApiFixtures.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/Fixtures/StartPickingBackendJsonApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi\Fixtures; use Generated\Shared\Transfer\PickingListTransfer; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetCollectionPickingListsBackendJsonApiCest.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetCollectionPickingListsBackendJsonApiCest.php index a2f1489da8..a8aa4b8821 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetCollectionPickingListsBackendJsonApiCest.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetCollectionPickingListsBackendJsonApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetPickingListsBackendJsonApiCest.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetPickingListsBackendJsonApiCest.php index 2ef8d8d2e6..25aa96d19b 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetPickingListsBackendJsonApiCest.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/GetPickingListsBackendJsonApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/PickingListItemsBackendJsonApiCest.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/PickingListItemsBackendJsonApiCest.php index e6fb7a7953..b1c93a979a 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/PickingListItemsBackendJsonApiCest.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/PickingListItemsBackendJsonApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/StartPickingBackendJsonApiCest.php b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/StartPickingBackendJsonApiCest.php index bac3f72559..9fd6b67862 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/JsonApi/StartPickingBackendJsonApiCest.php +++ b/tests/PyzTest/Glue/PickingListsBackend/JsonApi/StartPickingBackendJsonApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend\JsonApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PickingListsBackend/_support/PickingListsBackendApiTester.php b/tests/PyzTest/Glue/PickingListsBackend/_support/PickingListsBackendApiTester.php index ba7b3dbd78..4bffccf9fe 100644 --- a/tests/PyzTest/Glue/PickingListsBackend/_support/PickingListsBackendApiTester.php +++ b/tests/PyzTest/Glue/PickingListsBackend/_support/PickingListsBackendApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PickingListsBackend; use ArrayObject; diff --git a/tests/PyzTest/Glue/PriceProductVolumes/RestApi/Fixtures/PriceProductVolumesRestApiFixtures.php b/tests/PyzTest/Glue/PriceProductVolumes/RestApi/Fixtures/PriceProductVolumesRestApiFixtures.php index 35f6c6831a..d7cbf8ddd1 100644 --- a/tests/PyzTest/Glue/PriceProductVolumes/RestApi/Fixtures/PriceProductVolumesRestApiFixtures.php +++ b/tests/PyzTest/Glue/PriceProductVolumes/RestApi/Fixtures/PriceProductVolumesRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProductVolumes\RestApi\Fixtures; use Generated\Shared\Transfer\MoneyValueTransfer; diff --git a/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductAbstractPriceProductVolumesRestApiCest.php b/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductAbstractPriceProductVolumesRestApiCest.php index dca746b6b7..0b9dc3fa23 100644 --- a/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductAbstractPriceProductVolumesRestApiCest.php +++ b/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductAbstractPriceProductVolumesRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProductVolumes\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductConcretePriceProductVolumesRestApiCest.php b/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductConcretePriceProductVolumesRestApiCest.php index a943e17eea..391115d510 100644 --- a/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductConcretePriceProductVolumesRestApiCest.php +++ b/tests/PyzTest/Glue/PriceProductVolumes/RestApi/ProductConcretePriceProductVolumesRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProductVolumes\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PriceProductVolumes/_support/PriceProductVolumesApiTester.php b/tests/PyzTest/Glue/PriceProductVolumes/_support/PriceProductVolumesApiTester.php index 169579ac96..07a758520b 100644 --- a/tests/PyzTest/Glue/PriceProductVolumes/_support/PriceProductVolumesApiTester.php +++ b/tests/PyzTest/Glue/PriceProductVolumes/_support/PriceProductVolumesApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProductVolumes; use Generated\Shared\Transfer\RestProductPriceVolumesAttributesTransfer; diff --git a/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductAbstractRestApiCest.php b/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductAbstractRestApiCest.php index 66787a6209..16faf2ead3 100644 --- a/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductAbstractRestApiCest.php +++ b/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductAbstractRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductConcreteRestApiCest.php b/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductConcreteRestApiCest.php index af8cb31016..f972d22a6c 100644 --- a/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductConcreteRestApiCest.php +++ b/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductConcreteRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductsRestApiFixtures.php b/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductsRestApiFixtures.php index 4961ebb936..985f3cd8c3 100644 --- a/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/PriceProducts/RestApi/PriceProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProducts\RestApi; use Generated\Shared\Transfer\MoneyValueTransfer; diff --git a/tests/PyzTest/Glue/PriceProducts/_support/PriceProductsApiTester.php b/tests/PyzTest/Glue/PriceProducts/_support/PriceProductsApiTester.php index ab285c3e07..fa849f76ad 100644 --- a/tests/PyzTest/Glue/PriceProducts/_support/PriceProductsApiTester.php +++ b/tests/PyzTest/Glue/PriceProducts/_support/PriceProductsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\PriceProducts; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/ProductConfigurations/RestApi/Fixtures/ProductConfigurationsRestApiFixtures.php b/tests/PyzTest/Glue/ProductConfigurations/RestApi/Fixtures/ProductConfigurationsRestApiFixtures.php index 1e661c371f..40be1a56ca 100644 --- a/tests/PyzTest/Glue/ProductConfigurations/RestApi/Fixtures/ProductConfigurationsRestApiFixtures.php +++ b/tests/PyzTest/Glue/ProductConfigurations/RestApi/Fixtures/ProductConfigurationsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductConfigurations\RestApi\Fixtures; use Generated\Shared\DataBuilder\ProductConfigurationInstanceBuilder; diff --git a/tests/PyzTest/Glue/ProductConfigurations/RestApi/ProductConfigurationRestApiCest.php b/tests/PyzTest/Glue/ProductConfigurations/RestApi/ProductConfigurationRestApiCest.php index 8975af5b0e..57dce6082e 100644 --- a/tests/PyzTest/Glue/ProductConfigurations/RestApi/ProductConfigurationRestApiCest.php +++ b/tests/PyzTest/Glue/ProductConfigurations/RestApi/ProductConfigurationRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductConfigurations\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/ProductConfigurations/_support/ProductConfigurationsApiTester.php b/tests/PyzTest/Glue/ProductConfigurations/_support/ProductConfigurationsApiTester.php index 56fc5267a2..3aac9b1830 100644 --- a/tests/PyzTest/Glue/ProductConfigurations/_support/ProductConfigurationsApiTester.php +++ b/tests/PyzTest/Glue/ProductConfigurations/_support/ProductConfigurationsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductConfigurations; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/ProductLabels/RestApi/ProductAbstractProductLabelsRestApiCest.php b/tests/PyzTest/Glue/ProductLabels/RestApi/ProductAbstractProductLabelsRestApiCest.php index a46d86968e..da9bbb1075 100644 --- a/tests/PyzTest/Glue/ProductLabels/RestApi/ProductAbstractProductLabelsRestApiCest.php +++ b/tests/PyzTest/Glue/ProductLabels/RestApi/ProductAbstractProductLabelsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductLabels\RestApi; use Codeception\Util\HttpCode; @@ -72,21 +74,21 @@ public function requestProductAbstractWithProductLabelsRelationship(ProductLabel ->whenI() ->seeSingleResourceHasRelationshipByTypeAndId( ProductLabelsRestApiConfig::RESOURCE_PRODUCT_LABELS, - $idProductLabel, + (string)$idProductLabel, ); $I->amSure('The returned resource has product-labels include') ->whenI() ->seeIncludesContainsResourceByTypeAndId( ProductLabelsRestApiConfig::RESOURCE_PRODUCT_LABELS, - $idProductLabel, + (string)$idProductLabel, ); $I->amSure('The include has correct self-link') ->whenI() ->seeIncludedResourceByTypeAndIdHasSelfLink( ProductLabelsRestApiConfig::RESOURCE_PRODUCT_LABELS, - $idProductLabel, + (string)$idProductLabel, $I->buildProductLabelUrl($idProductLabel), ); } diff --git a/tests/PyzTest/Glue/ProductLabels/RestApi/ProductConcreteProductLabelsRestApiCest.php b/tests/PyzTest/Glue/ProductLabels/RestApi/ProductConcreteProductLabelsRestApiCest.php index b2161abab8..51ef598928 100644 --- a/tests/PyzTest/Glue/ProductLabels/RestApi/ProductConcreteProductLabelsRestApiCest.php +++ b/tests/PyzTest/Glue/ProductLabels/RestApi/ProductConcreteProductLabelsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductLabels\RestApi; use Codeception\Util\HttpCode; @@ -72,21 +74,21 @@ public function requestProductConcreteWithProductLabelsRelationship(ProductLabel ->whenI() ->seeSingleResourceHasRelationshipByTypeAndId( ProductLabelsRestApiConfig::RESOURCE_PRODUCT_LABELS, - $idProductLabel, + (string)$idProductLabel, ); $I->amSure('The returned resource has product-labels include') ->whenI() ->seeIncludesContainsResourceByTypeAndId( ProductLabelsRestApiConfig::RESOURCE_PRODUCT_LABELS, - $idProductLabel, + (string)$idProductLabel, ); $I->amSure('The include has correct self-link') ->whenI() ->seeIncludedResourceByTypeAndIdHasSelfLink( ProductLabelsRestApiConfig::RESOURCE_PRODUCT_LABELS, - $idProductLabel, + (string)$idProductLabel, $I->buildProductLabelUrl($idProductLabel), ); } diff --git a/tests/PyzTest/Glue/ProductLabels/RestApi/ProductLabelsRestApiFixtures.php b/tests/PyzTest/Glue/ProductLabels/RestApi/ProductLabelsRestApiFixtures.php index 2be8340401..a3679b2c0c 100644 --- a/tests/PyzTest/Glue/ProductLabels/RestApi/ProductLabelsRestApiFixtures.php +++ b/tests/PyzTest/Glue/ProductLabels/RestApi/ProductLabelsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductLabels\RestApi; use Generated\Shared\Transfer\ProductConcreteTransfer; diff --git a/tests/PyzTest/Glue/ProductLabels/_support/ProductLabelsApiTester.php b/tests/PyzTest/Glue/ProductLabels/_support/ProductLabelsApiTester.php index 05131f2048..4b0b596d2d 100644 --- a/tests/PyzTest/Glue/ProductLabels/_support/ProductLabelsApiTester.php +++ b/tests/PyzTest/Glue/ProductLabels/_support/ProductLabelsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\ProductLabels; use Spryker\Glue\GlueApplication\Rest\RequestConstantsInterface; diff --git a/tests/PyzTest/Glue/Products/RestApi/Fixtures/ProductsRestApiFixtures.php b/tests/PyzTest/Glue/Products/RestApi/Fixtures/ProductsRestApiFixtures.php index 48b463f42a..f4dbf2e631 100644 --- a/tests/PyzTest/Glue/Products/RestApi/Fixtures/ProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/Products/RestApi/Fixtures/ProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Products\RestApi\Fixtures; use Generated\Shared\Transfer\ProductConcreteTransfer; diff --git a/tests/PyzTest/Glue/Products/RestApi/ProductAbstractRestApiCest.php b/tests/PyzTest/Glue/Products/RestApi/ProductAbstractRestApiCest.php index e33a349f6c..4da60ed8cd 100644 --- a/tests/PyzTest/Glue/Products/RestApi/ProductAbstractRestApiCest.php +++ b/tests/PyzTest/Glue/Products/RestApi/ProductAbstractRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Products\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Products/RestApi/ProductConcreteRestApiCest.php b/tests/PyzTest/Glue/Products/RestApi/ProductConcreteRestApiCest.php index ae3734d818..723309f77b 100644 --- a/tests/PyzTest/Glue/Products/RestApi/ProductConcreteRestApiCest.php +++ b/tests/PyzTest/Glue/Products/RestApi/ProductConcreteRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Products\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Products/_support/ProductsApiTester.php b/tests/PyzTest/Glue/Products/_support/ProductsApiTester.php index 17db676b1a..28aa14574a 100644 --- a/tests/PyzTest/Glue/Products/_support/ProductsApiTester.php +++ b/tests/PyzTest/Glue/Products/_support/ProductsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Products; use Spryker\Glue\GlueApplication\Rest\RequestConstantsInterface; diff --git a/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiCest.php b/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiCest.php index 2bf86672a8..764130114f 100644 --- a/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiCest.php +++ b/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\RelatedProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiFixtures.php b/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiFixtures.php index 625bb22787..9f7b8a3e3e 100644 --- a/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/RelatedProducts/RestApi/RelatedProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\RelatedProducts\RestApi; use Generated\Shared\DataBuilder\StoreRelationBuilder; diff --git a/tests/PyzTest/Glue/RelatedProducts/_support/RelatedProductsApiTester.php b/tests/PyzTest/Glue/RelatedProducts/_support/RelatedProductsApiTester.php index 16ee0e877b..21fe60fa94 100644 --- a/tests/PyzTest/Glue/RelatedProducts/_support/RelatedProductsApiTester.php +++ b/tests/PyzTest/Glue/RelatedProducts/_support/RelatedProductsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\RelatedProducts; use Spryker\Glue\GlueApplication\Rest\RequestConstantsInterface; diff --git a/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiCest.php b/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiCest.php index 6628549340..2b234477fd 100644 --- a/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiCest.php +++ b/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\UpSellingProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiFixtures.php b/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiFixtures.php index 85310f0863..8efe35267b 100644 --- a/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/UpSellingProducts/RestApi/CartUpSellingProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\UpSellingProducts\RestApi; use Generated\Shared\DataBuilder\StoreRelationBuilder; diff --git a/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiCest.php b/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiCest.php index bed9c08a10..05ef34d81f 100644 --- a/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiCest.php +++ b/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\UpSellingProducts\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiFixtures.php b/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiFixtures.php index 87f0f3c43e..1d86ca4f10 100644 --- a/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiFixtures.php +++ b/tests/PyzTest/Glue/UpSellingProducts/RestApi/GuestCartUpSellingProductsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\UpSellingProducts\RestApi; use Generated\Shared\DataBuilder\StoreRelationBuilder; diff --git a/tests/PyzTest/Glue/UpSellingProducts/_support/UpSellingProductsApiTester.php b/tests/PyzTest/Glue/UpSellingProducts/_support/UpSellingProductsApiTester.php index a8d54827a2..bc37e98a6b 100644 --- a/tests/PyzTest/Glue/UpSellingProducts/_support/UpSellingProductsApiTester.php +++ b/tests/PyzTest/Glue/UpSellingProducts/_support/UpSellingProductsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\UpSellingProducts; use Spryker\Glue\CartsRestApi\CartsRestApiConfig; diff --git a/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiCest.php b/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiCest.php index 46ae8c7b74..1741c45edb 100644 --- a/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiCest.php +++ b/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Urls\RestApi; use Codeception\Util\HttpCode; @@ -109,9 +111,11 @@ public function requestExistingProductAbstractUrl(UrlsRestApiTester $I): void // Arrange $localizedUrl = ''; foreach ($this->fixtures->getProductUrlTransfer()->getUrls() as $localizedUrlTransfer) { - if ($localizedUrlTransfer->getLocale()->getLocaleName() === static::DEFAULT_LOCALE) { - $localizedUrl = $localizedUrlTransfer->getUrl(); + if ($localizedUrlTransfer->getLocale()->getLocaleName() !== static::DEFAULT_LOCALE) { + continue; } + + $localizedUrl = $localizedUrlTransfer->getUrl(); } // Act diff --git a/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiFixtures.php b/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiFixtures.php index a60c505bf4..ffc3fb1c8f 100644 --- a/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiFixtures.php +++ b/tests/PyzTest/Glue/Urls/RestApi/UrlsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Urls\RestApi; use Generated\Shared\Transfer\ProductAbstractTransfer; diff --git a/tests/PyzTest/Glue/Urls/_support/UrlsRestApiTester.php b/tests/PyzTest/Glue/Urls/_support/UrlsRestApiTester.php index 695f533a5b..be203e2573 100644 --- a/tests/PyzTest/Glue/Urls/_support/UrlsRestApiTester.php +++ b/tests/PyzTest/Glue/Urls/_support/UrlsRestApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Urls; use SprykerTest\Glue\Testify\Tester\ApiEndToEndTester; diff --git a/tests/PyzTest/Glue/Wishlists/RestApi/WishlistRestApiCest.php b/tests/PyzTest/Glue/Wishlists/RestApi/WishlistRestApiCest.php index 2d7662087e..221da3bfc1 100644 --- a/tests/PyzTest/Glue/Wishlists/RestApi/WishlistRestApiCest.php +++ b/tests/PyzTest/Glue/Wishlists/RestApi/WishlistRestApiCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Wishlists\RestApi; use Codeception\Util\HttpCode; diff --git a/tests/PyzTest/Glue/Wishlists/RestApi/WishlistsRestApiFixtures.php b/tests/PyzTest/Glue/Wishlists/RestApi/WishlistsRestApiFixtures.php index 2e86d1855b..43487e4b82 100644 --- a/tests/PyzTest/Glue/Wishlists/RestApi/WishlistsRestApiFixtures.php +++ b/tests/PyzTest/Glue/Wishlists/RestApi/WishlistsRestApiFixtures.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Wishlists\RestApi; use Generated\Shared\Transfer\CustomerTransfer; diff --git a/tests/PyzTest/Glue/Wishlists/_support/WishlistsApiTester.php b/tests/PyzTest/Glue/Wishlists/_support/WishlistsApiTester.php index 8d87e9d197..27e2cc5e5c 100644 --- a/tests/PyzTest/Glue/Wishlists/_support/WishlistsApiTester.php +++ b/tests/PyzTest/Glue/Wishlists/_support/WishlistsApiTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Glue\Wishlists; use Spryker\Glue\GlueApplication\Rest\RequestConstantsInterface; diff --git a/tests/PyzTest/Shared/Testify/_support/Helper/Environment.php b/tests/PyzTest/Shared/Testify/_support/Helper/Environment.php index 7f45b363dd..b54c7f3fd2 100644 --- a/tests/PyzTest/Shared/Testify/_support/Helper/Environment.php +++ b/tests/PyzTest/Shared/Testify/_support/Helper/Environment.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Shared\Testify\Helper; use Codeception\Module; @@ -28,7 +30,7 @@ public function _initialize(): void defined('APPLICATION_ENV') || define('APPLICATION_ENV', $applicationEnv); - defined('APPLICATION_STORE') || define('APPLICATION_STORE', (isset($_SERVER['APPLICATION_STORE']) && $_SERVER['APPLICATION_STORE'] !== '') ? $_SERVER['APPLICATION_STORE'] : 'DE'); + defined('APPLICATION_STORE') || define('APPLICATION_STORE', (isset($_SERVER['APPLICATION_STORE']) && $_SERVER['APPLICATION_STORE'] !== '') ? $_SERVER['APPLICATION_STORE'] : 'DE'); // phpcs:ignore SlevomatCodingStandard.Variables.DisallowSuperGlobalVariable putenv('APPLICATION_STORE=' . APPLICATION_STORE); defined('APPLICATION') || define('APPLICATION', ''); diff --git a/tests/PyzTest/Shared/Testify/_support/Helper/YvesBootstrap.php b/tests/PyzTest/Shared/Testify/_support/Helper/YvesBootstrap.php index 610c9675a7..154487ed1e 100644 --- a/tests/PyzTest/Shared/Testify/_support/Helper/YvesBootstrap.php +++ b/tests/PyzTest/Shared/Testify/_support/Helper/YvesBootstrap.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Shared\Testify\Helper; use Codeception\Exception\ModuleConfigException; @@ -33,7 +35,7 @@ public function _initialize(): void * * @return void */ - public function _beforeSuite($settings = []): void + public function _beforeSuite($settings = []): void // phpcs:ignore { $this->client = new HttpKernelBrowser($this->yvesBootstrap->boot()); } diff --git a/tests/PyzTest/Yves/Application/Presentation/Controller/HomepageCest.php b/tests/PyzTest/Yves/Application/Presentation/Controller/HomepageCest.php index beeaeb4af7..fe18e613de 100644 --- a/tests/PyzTest/Yves/Application/Presentation/Controller/HomepageCest.php +++ b/tests/PyzTest/Yves/Application/Presentation/Controller/HomepageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Application\Presentation\Controller; use PyzTest\Yves\Application\ApplicationPresentationTester; diff --git a/tests/PyzTest/Yves/Application/_support/ApplicationPresentationTester.php b/tests/PyzTest/Yves/Application/_support/ApplicationPresentationTester.php index 23120ef43b..402ddddc53 100644 --- a/tests/PyzTest/Yves/Application/_support/ApplicationPresentationTester.php +++ b/tests/PyzTest/Yves/Application/_support/ApplicationPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Application; use Codeception\Actor; diff --git a/tests/PyzTest/Yves/Application/_support/PageObject/Homepage.php b/tests/PyzTest/Yves/Application/_support/PageObject/Homepage.php index dc5963de3e..9f41281483 100644 --- a/tests/PyzTest/Yves/Application/_support/PageObject/Homepage.php +++ b/tests/PyzTest/Yves/Application/_support/PageObject/Homepage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Application\PageObject; class Homepage diff --git a/tests/PyzTest/Yves/Availability/Presentation/AvailabilityAddToCartCest.php b/tests/PyzTest/Yves/Availability/Presentation/AvailabilityAddToCartCest.php index 32a72d904d..1a5dd7ff08 100644 --- a/tests/PyzTest/Yves/Availability/Presentation/AvailabilityAddToCartCest.php +++ b/tests/PyzTest/Yves/Availability/Presentation/AvailabilityAddToCartCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Availability\Presentation; use Codeception\Scenario; diff --git a/tests/PyzTest/Yves/Availability/Presentation/CheckoutAvailabilityCest.php b/tests/PyzTest/Yves/Availability/Presentation/CheckoutAvailabilityCest.php index 7f7ff924bc..446c256002 100644 --- a/tests/PyzTest/Yves/Availability/Presentation/CheckoutAvailabilityCest.php +++ b/tests/PyzTest/Yves/Availability/Presentation/CheckoutAvailabilityCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Availability\Presentation; use Codeception\Scenario; @@ -35,7 +37,7 @@ class CheckoutAvailabilityCest * * @return void */ - public function testCheckoutItemWithAvailability(AvailabilityPresentationTester $i, Scenario $scenario): void + public function testCheckoutItemWithAvailability(AvailabilityPresentationTester $i, Scenario $scenario): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $i->wantTo('Checkout item with stock'); $i->expectTo('Availability changed during SM processing.'); diff --git a/tests/PyzTest/Yves/Availability/_support/AvailabilityPresentationTester.php b/tests/PyzTest/Yves/Availability/_support/AvailabilityPresentationTester.php index cea6fe6f65..84de5740c9 100644 --- a/tests/PyzTest/Yves/Availability/_support/AvailabilityPresentationTester.php +++ b/tests/PyzTest/Yves/Availability/_support/AvailabilityPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Availability; use Codeception\Actor; diff --git a/tests/PyzTest/Yves/Cart/_support/PageObject/CartListPage.php b/tests/PyzTest/Yves/Cart/_support/PageObject/CartListPage.php index 7e468e1a3a..9d5956a207 100644 --- a/tests/PyzTest/Yves/Cart/_support/PageObject/CartListPage.php +++ b/tests/PyzTest/Yves/Cart/_support/PageObject/CartListPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Cart\PageObject; class CartListPage diff --git a/tests/PyzTest/Yves/Checkout/Controller/CheckoutControllerTest.php b/tests/PyzTest/Yves/Checkout/Controller/CheckoutControllerTest.php index 17632b7c5c..dbb93589a8 100644 --- a/tests/PyzTest/Yves/Checkout/Controller/CheckoutControllerTest.php +++ b/tests/PyzTest/Yves/Checkout/Controller/CheckoutControllerTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Controller; use Codeception\Test\Unit; @@ -624,7 +626,7 @@ private function setQuoteForSummary(): void * * @return array */ - protected function getFormData($url, $actionName, $routeName, $formName): array + protected function getFormData(string $url, string $actionName, string $routeName, string $formName): array { $request = Request::create($url, 'GET'); $request->request->set('_route', $routeName); diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/AddressStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/AddressStepTest.php index 722f8d6a22..b15c108b28 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/AddressStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/AddressStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; @@ -393,9 +395,7 @@ protected function createAddressStep($customerClientMock = null): AddressStep */ protected function createCalculationClientMock(): CheckoutPageToCalculationClientInterface { - $calculationMock = $this->getMockBuilder(CheckoutPageToCalculationClientInterface::class)->getMock(); - - return $calculationMock; + return $this->getMockBuilder(CheckoutPageToCalculationClientInterface::class)->getMock(); } /** diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/CustomerStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/CustomerStepTest.php index 5025409f23..2d4b6c809d 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/CustomerStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/CustomerStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/EntryStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/EntryStepTest.php index ff0e083a63..7d04c30fc6 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/EntryStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/EntryStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/PaymentStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/PaymentStepTest.php index 09452da202..d02758f4de 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/PaymentStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/PaymentStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; @@ -12,6 +14,7 @@ use Generated\Shared\DataBuilder\QuoteBuilder; use Generated\Shared\Transfer\PaymentTransfer; use Generated\Shared\Transfer\QuoteTransfer; +use PyzTest\Yves\Checkout\CheckoutBusinessTester; use Spryker\Yves\Messenger\FlashMessenger\FlashMessengerInterface; use Spryker\Yves\StepEngine\Dependency\Plugin\Handler\StepHandlerPluginCollection; use Spryker\Yves\StepEngine\Dependency\Plugin\Handler\StepHandlerPluginInterface; @@ -38,7 +41,7 @@ class PaymentStepTest extends Unit /** * @var \PyzTest\Yves\Checkout\CheckoutBusinessTester: */ - protected $tester; + protected CheckoutBusinessTester $tester; /** * @dataProvider executeDataProvider diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/PlaceOrderStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/PlaceOrderStepTest.php index 5e4abbb7cd..89484a38e2 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/PlaceOrderStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/PlaceOrderStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/ShipmentStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/ShipmentStepTest.php index 71889fa6da..ff1964a6ec 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/ShipmentStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/ShipmentStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/SuccessStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/SuccessStepTest.php index 11fec9133d..d27e39da09 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/SuccessStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/SuccessStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; @@ -83,8 +85,10 @@ public function testPostConditionsWhenOrderReferenceIsMissingShouldReturnFalse() * * @return \SprykerShop\Yves\CheckoutPage\Process\Steps\SuccessStep */ - protected function createSuccessStep($customerClientMock = null, ?CheckoutPageToCartClientInterface $cartClientMock = null): SuccessStep - { + protected function createSuccessStep( + ?CheckoutPageToCustomerClientInterface $customerClientMock = null, + ?CheckoutPageToCartClientInterface $cartClientMock = null, + ): SuccessStep { if ($customerClientMock === null) { $customerClientMock = $this->createCustomerClientMock(); } diff --git a/tests/PyzTest/Yves/Checkout/Process/Steps/SummaryStepTest.php b/tests/PyzTest/Yves/Checkout/Process/Steps/SummaryStepTest.php index 7ba704f5b4..c69fcdbecd 100644 --- a/tests/PyzTest/Yves/Checkout/Process/Steps/SummaryStepTest.php +++ b/tests/PyzTest/Yves/Checkout/Process/Steps/SummaryStepTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Process\Steps; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Yves/Checkout/_support/CheckoutBusinessTester.php b/tests/PyzTest/Yves/Checkout/_support/CheckoutBusinessTester.php index 4ffeea5c70..44b674e8da 100644 --- a/tests/PyzTest/Yves/Checkout/_support/CheckoutBusinessTester.php +++ b/tests/PyzTest/Yves/Checkout/_support/CheckoutBusinessTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout; use Codeception\Actor; diff --git a/tests/PyzTest/Yves/Checkout/_support/Helper/CheckoutHelper.php b/tests/PyzTest/Yves/Checkout/_support/Helper/CheckoutHelper.php index 88d561aee0..ced931379b 100644 --- a/tests/PyzTest/Yves/Checkout/_support/Helper/CheckoutHelper.php +++ b/tests/PyzTest/Yves/Checkout/_support/Helper/CheckoutHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Checkout\Helper; use Codeception\Module; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressCest.php index 2a9ed113e0..526c95ae2e 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use PyzTest\Yves\Customer\CustomerPresentationTester; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressesCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressesCest.php index 753e2759b9..c96d0174c9 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressesCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerAddressesCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use PyzTest\Yves\Customer\CustomerPresentationTester; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerLoginCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerLoginCest.php index 9eb097b0ef..73fbe08c5a 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerLoginCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerLoginCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use Codeception\Scenario; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerLogoutCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerLogoutCest.php index b4d3ac8568..1a124c8482 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerLogoutCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerLogoutCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use PyzTest\Yves\Customer\CustomerPresentationTester; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerNewsletterCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerNewsletterCest.php index 3d27215832..fdaf87de66 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerNewsletterCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerNewsletterCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use Codeception\Stub; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerOverviewCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerOverviewCest.php index c3554e6b22..0783ae8beb 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerOverviewCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerOverviewCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use PyzTest\Yves\Customer\CustomerPresentationTester; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerProfileCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerProfileCest.php index 00783c4480..555ddd83d8 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerProfileCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerProfileCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use PyzTest\Yves\Customer\CustomerPresentationTester; diff --git a/tests/PyzTest/Yves/Customer/Presentation/CustomerRegistrationCest.php b/tests/PyzTest/Yves/Customer/Presentation/CustomerRegistrationCest.php index cfd3cafbdc..f56b5aa258 100644 --- a/tests/PyzTest/Yves/Customer/Presentation/CustomerRegistrationCest.php +++ b/tests/PyzTest/Yves/Customer/Presentation/CustomerRegistrationCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Presentation; use PyzTest\Yves\Customer\CustomerPresentationTester; diff --git a/tests/PyzTest/Yves/Customer/_support/CustomerPresentationTester.php b/tests/PyzTest/Yves/Customer/_support/CustomerPresentationTester.php index 40ef1a4d17..d67740cafc 100644 --- a/tests/PyzTest/Yves/Customer/_support/CustomerPresentationTester.php +++ b/tests/PyzTest/Yves/Customer/_support/CustomerPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer; use Codeception\Actor; @@ -43,7 +45,7 @@ class CustomerPresentationTester extends Actor * * @return void */ - public function submitLoginForm($email, $password): void + public function submitLoginForm(string $email, string $password): void { $i = $this; $i->submitForm(['name' => 'loginForm'], [ diff --git a/tests/PyzTest/Yves/Customer/_support/Helper/CustomerHelper.php b/tests/PyzTest/Yves/Customer/_support/Helper/CustomerHelper.php index a73e7b231c..fec87d1c29 100644 --- a/tests/PyzTest/Yves/Customer/_support/Helper/CustomerHelper.php +++ b/tests/PyzTest/Yves/Customer/_support/Helper/CustomerHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\Helper; use Codeception\Module; @@ -44,7 +46,7 @@ class CustomerHelper extends Module * * @return void */ - public function _before(TestInterface $step): void + public function _before(TestInterface $step): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $this->cleanUpDatabase(); } @@ -69,15 +71,17 @@ protected function cleanUpDatabase(): void * * @return void */ - protected function deleteCustomerByEmail($email): void + protected function deleteCustomerByEmail(string $email): void { $customerEntity = $this->loadCustomerByEmail($email); - if ($customerEntity) { - $this->deleteCustomerAddresses($customerEntity); - $this->deleteNewsletterSubscription($customerEntity); - - $customerEntity->delete(); + if (!$customerEntity) { + return; } + + $this->deleteCustomerAddresses($customerEntity); + $this->deleteNewsletterSubscription($customerEntity); + + $customerEntity->delete(); } /** @@ -88,9 +92,11 @@ protected function deleteCustomerByEmail($email): void protected function deleteCustomerAddresses(SpyCustomer $customerEntity): void { $addresses = $customerEntity->getAddresses(); - if ($addresses) { - $addresses->delete(); + if (!$addresses) { + return; } + + $addresses->delete(); } /** @@ -101,13 +107,15 @@ protected function deleteCustomerAddresses(SpyCustomer $customerEntity): void protected function deleteNewsletterSubscription(SpyCustomer $customerEntity): void { $newsletterSubscriptions = $customerEntity->getSpyNewsletterSubscribers(); - if ($newsletterSubscriptions) { - foreach ($newsletterSubscriptions as $newsletterSubscription) { - foreach ($newsletterSubscription->getSpyNewsletterSubscriptions() as $spyNewsletterSubscription) { - $spyNewsletterSubscription->delete(); - } - $newsletterSubscription->delete(); + if (!$newsletterSubscriptions) { + return; + } + + foreach ($newsletterSubscriptions as $newsletterSubscription) { + foreach ($newsletterSubscription->getSpyNewsletterSubscriptions() as $spyNewsletterSubscription) { + $spyNewsletterSubscription->delete(); } + $newsletterSubscription->delete(); } } @@ -116,12 +124,11 @@ protected function deleteNewsletterSubscription(SpyCustomer $customerEntity): vo * * @return \Orm\Zed\Customer\Persistence\SpyCustomer|null */ - public function loadCustomerByEmail($email): ?SpyCustomer + public function loadCustomerByEmail(string $email): ?SpyCustomer { $customerQuery = new SpyCustomerQuery(); - $customerEntity = $customerQuery->findOneByEmail($email); - return $customerEntity; + return $customerQuery->findOneByEmail($email); } /** @@ -171,7 +178,7 @@ private function getMailMock() * * @return void */ - public function addAddressToCustomer($email, $address, $isDefaultShipping = true, $isDefaultBilling = true): void + public function addAddressToCustomer(string $email, string $address, bool $isDefaultShipping = true, bool $isDefaultBilling = true): void { $customerEntity = $this->loadCustomerByEmail($email); $addressTransfer = CustomerAddressesPage::getAddressData($address); @@ -200,7 +207,7 @@ public function addAddressToCustomer($email, $address, $isDefaultShipping = true * * @return void */ - public function addNewsletterSubscription($email, $type = NewsletterConstants::DEFAULT_NEWSLETTER_TYPE): void + public function addNewsletterSubscription(string $email, string $type = NewsletterConstants::DEFAULT_NEWSLETTER_TYPE): void { $customerEntity = $this->loadCustomerByEmail($email); $newsletterSubscriberTransfer = new NewsletterSubscriberTransfer(); diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/Customer.php b/tests/PyzTest/Yves/Customer/_support/PageObject/Customer.php index aa003dcd51..90e4553e85 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/Customer.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/Customer.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; use Generated\Shared\Transfer\CustomerTransfer; @@ -46,7 +48,7 @@ class Customer * * @return \Generated\Shared\Transfer\CustomerTransfer */ - public static function getCustomerData($email): CustomerTransfer + public static function getCustomerData(string $email): CustomerTransfer { $customerTransfer = new CustomerTransfer(); $customerTransfer->fromArray(self::$customer[$email]); diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressPage.php index 1bc7dfb660..1c2c16d04d 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerAddressPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressesPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressesPage.php index fb2f1bbc73..818d68d822 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressesPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerAddressesPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; use Generated\Shared\Transfer\AddressTransfer; @@ -68,7 +70,7 @@ class CustomerAddressesPage extends Customer * * @return \Generated\Shared\Transfer\AddressTransfer */ - public static function getAddressData($address): AddressTransfer + public static function getAddressData(string $address): AddressTransfer { $addressTransfer = new AddressTransfer(); $addressTransfer->fromArray(self::$addresses[$address]); diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLoginPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLoginPage.php index 50be9ca94a..d680f3b3b1 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLoginPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLoginPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerLoginPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLogoutPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLogoutPage.php index c131746ebd..9eb8892ca6 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLogoutPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerLogoutPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerLogoutPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerNewsletterPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerNewsletterPage.php index d76ec096b1..0afd592e02 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerNewsletterPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerNewsletterPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerNewsletterPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOrdersPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOrdersPage.php index 642836432a..b3a158b22b 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOrdersPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOrdersPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerOrdersPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOverviewPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOverviewPage.php index b6e7f1a76d..8b02776128 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOverviewPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerOverviewPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerOverviewPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerPasswordForgottenPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerPasswordForgottenPage.php index bf21c6bb2e..f2cc397b24 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerPasswordForgottenPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerPasswordForgottenPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerPasswordForgottenPage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerProfilePage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerProfilePage.php index d0e422078d..0ce7146b8d 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerProfilePage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerProfilePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerProfilePage extends Customer diff --git a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerRegistrationPage.php b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerRegistrationPage.php index 129290f4b7..b7b967ae2f 100644 --- a/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerRegistrationPage.php +++ b/tests/PyzTest/Yves/Customer/_support/PageObject/CustomerRegistrationPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Customer\PageObject; class CustomerRegistrationPage extends Customer diff --git a/tests/PyzTest/Yves/Newsletter/Presentation/NewsletterSubscriptionCest.php b/tests/PyzTest/Yves/Newsletter/Presentation/NewsletterSubscriptionCest.php index adb3df5d2a..41da454f41 100644 --- a/tests/PyzTest/Yves/Newsletter/Presentation/NewsletterSubscriptionCest.php +++ b/tests/PyzTest/Yves/Newsletter/Presentation/NewsletterSubscriptionCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Newsletter\Presentation; use Generated\Shared\DataBuilder\CustomerBuilder; @@ -137,8 +139,6 @@ public function subscribedEmailCanBeUnsubscribedByCustomerAfterRegistration(News */ protected function buildCustomerTransfer() { - $customerTransfer = (new CustomerBuilder())->build(); - - return $customerTransfer; + return (new CustomerBuilder())->build(); } } diff --git a/tests/PyzTest/Yves/Newsletter/_support/NewsletterPresentationTester.php b/tests/PyzTest/Yves/Newsletter/_support/NewsletterPresentationTester.php index 16ae4abc30..dfa25870eb 100644 --- a/tests/PyzTest/Yves/Newsletter/_support/NewsletterPresentationTester.php +++ b/tests/PyzTest/Yves/Newsletter/_support/NewsletterPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Newsletter; use Codeception\Actor; @@ -38,7 +40,7 @@ class NewsletterPresentationTester extends Actor * * @return void */ - public function haveAnAlreadySubscribedEmail($email): void + public function haveAnAlreadySubscribedEmail(string $email): void { $newsletterSubscriberEntity = new SpyNewsletterSubscriber(); $newsletterSubscriberEntity diff --git a/tests/PyzTest/Yves/Newsletter/_support/PageObject/NewsletterSubscriptionHomePage.php b/tests/PyzTest/Yves/Newsletter/_support/PageObject/NewsletterSubscriptionHomePage.php index 04786459ca..90d562b205 100644 --- a/tests/PyzTest/Yves/Newsletter/_support/PageObject/NewsletterSubscriptionHomePage.php +++ b/tests/PyzTest/Yves/Newsletter/_support/PageObject/NewsletterSubscriptionHomePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Newsletter\PageObject; class NewsletterSubscriptionHomePage diff --git a/tests/PyzTest/Yves/Product/_support/PageObject/ProductDetailPage.php b/tests/PyzTest/Yves/Product/_support/PageObject/ProductDetailPage.php index 4d247e6018..0c2fd77ee5 100644 --- a/tests/PyzTest/Yves/Product/_support/PageObject/ProductDetailPage.php +++ b/tests/PyzTest/Yves/Product/_support/PageObject/ProductDetailPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Product\PageObject; class ProductDetailPage diff --git a/tests/PyzTest/Yves/Testify/_support/Helper/BootstrapHelper.php b/tests/PyzTest/Yves/Testify/_support/Helper/BootstrapHelper.php index 34b6a60475..2a1f9dc99f 100644 --- a/tests/PyzTest/Yves/Testify/_support/Helper/BootstrapHelper.php +++ b/tests/PyzTest/Yves/Testify/_support/Helper/BootstrapHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Testify\Helper; use Codeception\Lib\Framework; @@ -24,7 +26,7 @@ class BootstrapHelper extends Framework * * @return void */ - public function _before(TestInterface $test): void + public function _before(TestInterface $test): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $this->disableWhoopsErrorHandler(); diff --git a/tests/PyzTest/Yves/Testify/_support/Helper/DebugHelper.php b/tests/PyzTest/Yves/Testify/_support/Helper/DebugHelper.php index 799595b658..27b8ccbef9 100644 --- a/tests/PyzTest/Yves/Testify/_support/Helper/DebugHelper.php +++ b/tests/PyzTest/Yves/Testify/_support/Helper/DebugHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Testify\Helper; use Codeception\Module; @@ -23,9 +25,9 @@ class DebugHelper extends Module * * @return void */ - public function _beforeSuite($settings = []): void + public function _beforeSuite(array $settings = []): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { - $_COOKIE['XDEBUG_SESSION'] = 'XDEBUG_ECLIPSE'; + $_COOKIE['XDEBUG_SESSION'] = 'XDEBUG_ECLIPSE'; // phpcs:ignore SlevomatCodingStandard.Variables.DisallowSuperGlobalVariable $this->getConfigHelper()->setConfig(ZedRequestConstants::TRANSFER_DEBUG_SESSION_FORWARD_ENABLED, true); } } diff --git a/tests/PyzTest/Yves/Testify/_support/Helper/LoginHelper.php b/tests/PyzTest/Yves/Testify/_support/Helper/LoginHelper.php index 8c7f218496..e3bd89fbed 100644 --- a/tests/PyzTest/Yves/Testify/_support/Helper/LoginHelper.php +++ b/tests/PyzTest/Yves/Testify/_support/Helper/LoginHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Yves\Testify\Helper; use Codeception\Module; diff --git a/tests/PyzTest/Zed/AppCatalogGui/Presentation/AppCatalogGuiControllerCest.php b/tests/PyzTest/Zed/AppCatalogGui/Presentation/AppCatalogGuiControllerCest.php index 522e5201f0..70042de5ac 100644 --- a/tests/PyzTest/Zed/AppCatalogGui/Presentation/AppCatalogGuiControllerCest.php +++ b/tests/PyzTest/Zed/AppCatalogGui/Presentation/AppCatalogGuiControllerCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\AppCatalogGui\Presentation; use PyzTest\Zed\AppCatalogGui\AppCatalogGuiPresentationTester; diff --git a/tests/PyzTest/Zed/AppCatalogGui/_support/AppCatalogGuiPresentationTester.php b/tests/PyzTest/Zed/AppCatalogGui/_support/AppCatalogGuiPresentationTester.php index 804f67836c..dbc7f6a920 100644 --- a/tests/PyzTest/Zed/AppCatalogGui/_support/AppCatalogGuiPresentationTester.php +++ b/tests/PyzTest/Zed/AppCatalogGui/_support/AppCatalogGuiPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\AppCatalogGui; use Codeception\Actor; diff --git a/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiApiLoginPage.php b/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiApiLoginPage.php index 69280baa23..9e8f82ed87 100644 --- a/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiApiLoginPage.php +++ b/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiApiLoginPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\AppCatalogGui\PageObject; class AppCatalogGuiApiLoginPage diff --git a/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiIndexPage.php b/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiIndexPage.php index f7f416725c..6ee6b5fe7f 100644 --- a/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiIndexPage.php +++ b/tests/PyzTest/Zed/AppCatalogGui/_support/PageObject/AppCatalogGuiIndexPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\AppCatalogGui\PageObject; class AppCatalogGuiIndexPage diff --git a/tests/PyzTest/Zed/Availability/_support/PageObject/AvailabilityViewPage.php b/tests/PyzTest/Zed/Availability/_support/PageObject/AvailabilityViewPage.php index 41ae49ae5e..f744c4af1b 100644 --- a/tests/PyzTest/Zed/Availability/_support/PageObject/AvailabilityViewPage.php +++ b/tests/PyzTest/Zed/Availability/_support/PageObject/AvailabilityViewPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Availability\PageObject; class AvailabilityViewPage diff --git a/tests/PyzTest/Zed/Calculation/Business/CalculationWithCalculableObjectFacadeTest.php b/tests/PyzTest/Zed/Calculation/Business/CalculationWithCalculableObjectFacadeTest.php index 8105ed62cc..7ea47c9040 100644 --- a/tests/PyzTest/Zed/Calculation/Business/CalculationWithCalculableObjectFacadeTest.php +++ b/tests/PyzTest/Zed/Calculation/Business/CalculationWithCalculableObjectFacadeTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Calculation\Business; use ArrayObject; @@ -490,7 +492,7 @@ protected function createFixtureDataForCalculation(): QuoteTransfer * * @return \Orm\Zed\Discount\Persistence\SpyDiscountVoucher */ - protected function createDiscounts($discountAmount, $calculatorType): SpyDiscountVoucher + protected function createDiscounts(int $discountAmount, string $calculatorType): SpyDiscountVoucher { $discountVoucherPoolEntity = new SpyDiscountVoucherPool(); $discountVoucherPoolEntity->setName('test-pool'); @@ -567,7 +569,7 @@ protected function resetCurrentDiscounts(): void * * @return \Orm\Zed\Product\Persistence\SpyProductAbstract */ - protected function createAbstractProductWithTaxSet($taxRate): SpyProductAbstract + protected function createAbstractProductWithTaxSet(int $taxRate): SpyProductAbstract { $countryEntity = SpyCountryQuery::create()->findOneByIso2Code('DE'); @@ -581,9 +583,7 @@ protected function createAbstractProductWithTaxSet($taxRate): SpyProductAbstract $this->createTaxSetTax($taxSetEntity, $taxRateEntity); - $abstractProductEntity = $this->createAbstractProduct($taxSetEntity); - - return $abstractProductEntity; + return $this->createAbstractProduct($taxSetEntity); } /** @@ -600,9 +600,7 @@ protected function createAbstractProductWithTaxExemption(): SpyProductAbstract $this->createTaxSetTax($taxSetEntity, $taxRateEntity); - $abstractProductEntity = $this->createAbstractProduct($taxSetEntity); - - return $abstractProductEntity; + return $this->createAbstractProduct($taxSetEntity); } /** diff --git a/tests/PyzTest/Zed/Calculation/_support/CalculationBusinessTester.php b/tests/PyzTest/Zed/Calculation/_support/CalculationBusinessTester.php index e3f92b2250..122ea9938b 100644 --- a/tests/PyzTest/Zed/Calculation/_support/CalculationBusinessTester.php +++ b/tests/PyzTest/Zed/Calculation/_support/CalculationBusinessTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Calculation; use Codeception\Actor; diff --git a/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiCreatePageCest.php b/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiCreatePageCest.php index 75d273c369..3f208871c1 100644 --- a/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiCreatePageCest.php +++ b/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiCreatePageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui\Presentation; use Codeception\Scenario; @@ -44,7 +46,7 @@ public function _before(CmsGuiPresentationTester $i): void * * @return void */ - public function testICanCreateCmsPageWithTranslatedPlaceholders(CmsGuiPresentationTester $i, Scenario $scenario): void + public function testICanCreateCmsPageWithTranslatedPlaceholders(CmsGuiPresentationTester $i, Scenario $scenario): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $i->wantTo('Create cms page with multiple translations'); $i->expect('Page is persisted in Zed, exported to Yves and is accessible.'); diff --git a/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiPageListCest.php b/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiPageListCest.php index ac5b3bbc91..bc7c61ce70 100644 --- a/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiPageListCest.php +++ b/tests/PyzTest/Zed/CmsGui/Presentation/CmsGuiPageListCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui\Presentation; use PyzTest\Zed\CmsGui\CmsGuiPresentationTester; diff --git a/tests/PyzTest/Zed/CmsGui/_support/CmsGuiPresentationTester.php b/tests/PyzTest/Zed/CmsGui/_support/CmsGuiPresentationTester.php index 4f9cc7c786..b9ab035275 100644 --- a/tests/PyzTest/Zed/CmsGui/_support/CmsGuiPresentationTester.php +++ b/tests/PyzTest/Zed/CmsGui/_support/CmsGuiPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui; use Codeception\Actor; @@ -40,7 +42,7 @@ class CmsGuiPresentationTester extends Actor * * @return $this */ - public function setValidFrom($date) + public function setValidFrom(string $date) { $date = $this->adaptDateInputForBrowser($date); $this->fillField('//*[@id="cms_page_validFrom"]', $date); @@ -63,7 +65,7 @@ public function setIsSearchable() * * @return $this */ - public function setValidTo($date) + public function setValidTo(string $date) { $date = $this->adaptDateInputForBrowser($date); $this->fillField('//*[@id="cms_page_validTo"]', $date); @@ -78,7 +80,7 @@ public function setValidTo($date) * * @return $this */ - public function fillLocalizedUrlForm($formIndex, $name, $url) + public function fillLocalizedUrlForm(int $formIndex, string $name, string $url) { $nameFieldIdentifier = sprintf('//*[@id="cms_page_pageAttributes_%s_name"]', $formIndex); $this->waitForElementVisible($nameFieldIdentifier); @@ -97,7 +99,7 @@ public function fillLocalizedUrlForm($formIndex, $name, $url) * * @return void */ - public function fillPlaceholderContents($placeHolderIndex, $localeIndex, $contents): void + public function fillPlaceholderContents(int $placeHolderIndex, int $localeIndex, string $contents): void { $translationElementId = 'cms_glossary_glossaryAttributes_' . $placeHolderIndex . '_translations_' . $localeIndex . '_translation'; @@ -157,7 +159,7 @@ public function includeJquery() */ public function grabCmsPageId(): int { - return $this->grabFromCurrentUrl('/id-cms-page=(\d+)/'); + return (int)$this->grabFromCurrentUrl('/id-cms-page=(\d+)/'); } /** diff --git a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreateGlossaryPage.php b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreateGlossaryPage.php index 2c1807d4fd..af0f4bff36 100644 --- a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreateGlossaryPage.php +++ b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreateGlossaryPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui\PageObject; class CmsCreateGlossaryPage @@ -34,7 +36,7 @@ class CmsCreateGlossaryPage * * @return string */ - public static function getLocalizedPlaceholderData($placeholder, $locale): string + public static function getLocalizedPlaceholderData(string $placeholder, string $locale): string { return static::$localizedPlaceholders[$placeholder][$locale]; } diff --git a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreatePage.php b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreatePage.php index 9343a8d646..d64cb572d3 100644 --- a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreatePage.php +++ b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsCreatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui\PageObject; class CmsCreatePage diff --git a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsEditPage.php b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsEditPage.php index 05b304b5eb..7449acec1d 100644 --- a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsEditPage.php +++ b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsEditPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui\PageObject; class CmsEditPage diff --git a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsListPage.php b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsListPage.php index 3a7142e4eb..871513077c 100644 --- a/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsListPage.php +++ b/tests/PyzTest/Zed/CmsGui/_support/PageObject/CmsListPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\CmsGui\PageObject; class CmsListPage diff --git a/tests/PyzTest/Zed/Console/Console/ConsoleCest.php b/tests/PyzTest/Zed/Console/Console/ConsoleCest.php index 5228a3ce1e..f9279689dc 100644 --- a/tests/PyzTest/Zed/Console/Console/ConsoleCest.php +++ b/tests/PyzTest/Zed/Console/Console/ConsoleCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Console\Console; use PHPUnit\Framework\Assert; diff --git a/tests/PyzTest/Zed/Console/Console/GenerateDataBuildersCest.php b/tests/PyzTest/Zed/Console/Console/GenerateDataBuildersCest.php index b28da36aee..c76ae13aa5 100644 --- a/tests/PyzTest/Zed/Console/Console/GenerateDataBuildersCest.php +++ b/tests/PyzTest/Zed/Console/Console/GenerateDataBuildersCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Console\Console; use PyzTest\Zed\Console\ConsoleConsoleTester; diff --git a/tests/PyzTest/Zed/Console/_support/ConsoleConsoleTester.php b/tests/PyzTest/Zed/Console/_support/ConsoleConsoleTester.php index cb7a7e7d4f..eb775f8fae 100644 --- a/tests/PyzTest/Zed/Console/_support/ConsoleConsoleTester.php +++ b/tests/PyzTest/Zed/Console/_support/ConsoleConsoleTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Console; use Codeception\Actor; @@ -38,8 +40,7 @@ public function runConsoleApplication(): string $cmd = 'vendor/bin/console'; $process = new Process([$cmd]); $process->run(); - $output = $process->getOutput(); - return $output; + return $process->getOutput(); } } diff --git a/tests/PyzTest/Zed/Console/_support/Helper/ConsoleHelper.php b/tests/PyzTest/Zed/Console/_support/Helper/ConsoleHelper.php index 21b55b296c..fa3a6c4623 100644 --- a/tests/PyzTest/Zed/Console/_support/Helper/ConsoleHelper.php +++ b/tests/PyzTest/Zed/Console/_support/Helper/ConsoleHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Console\Helper; use Codeception\Module; @@ -31,7 +33,7 @@ class ConsoleHelper extends Module * * @return void */ - public function _after(TestInterface $test): void + public function _after(TestInterface $test): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { foreach ($this->config['cleanup_dirs'] as $dir) { $dir = codecept_data_dir() . self::SANDBOX_DIR . $dir; @@ -45,7 +47,7 @@ public function _after(TestInterface $test): void * * @return void */ - public function runSprykerCommand($command): void + public function runSprykerCommand(string $command): void { $command = 'php ' . codecept_data_dir() . self::RUNNER . " $command"; $this->getCli()->runShellCommand($command); diff --git a/tests/PyzTest/Zed/MessageBroker/Business/SendMessageTest.php b/tests/PyzTest/Zed/MessageBroker/Business/SendMessageTest.php index 077d15f1f6..30771aa6be 100644 --- a/tests/PyzTest/Zed/MessageBroker/Business/SendMessageTest.php +++ b/tests/PyzTest/Zed/MessageBroker/Business/SendMessageTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\Business; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Asset/Communication/AssetMessageTest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Asset/Communication/AssetMessageTest.php index 723d7d6c2f..305924dfb9 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Asset/Communication/AssetMessageTest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Asset/Communication/AssetMessageTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Asset\Communication; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentAuthorizedMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentAuthorizedMessageCest.php index 25b53a1c6c..6adc11cb6d 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentAuthorizedMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentAuthorizedMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Payment\Presentation; use Generated\Shared\Transfer\PaymentAuthorizedTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCanceledMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCanceledMessageCest.php index 2f7acbcdf3..57c47b4e8e 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCanceledMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCanceledMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Payment\Presentation; use Generated\Shared\Transfer\PaymentCanceledTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCaptureFailedMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCaptureFailedMessageCest.php index 09269761bd..70a504a851 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCaptureFailedMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCaptureFailedMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Payment\Presentation; use Generated\Shared\Transfer\PaymentCaptureFailedTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCapturedMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCapturedMessageCest.php index 56d4d3b707..41db5ea349 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCapturedMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentCapturedMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Payment\Presentation; use Generated\Shared\Transfer\PaymentCapturedTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundFailedMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundFailedMessageCest.php index 14b1fbc534..e61eb0f22b 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundFailedMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundFailedMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Payment\Presentation; use Generated\Shared\Transfer\PaymentRefundFailedTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundedMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundedMessageCest.php index f9726b512b..e1d95e7115 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundedMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Payment/Presentation/PaymentRefundedMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Payment\Presentation; use Generated\Shared\Transfer\PaymentRefundedTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/PaymentMethod/Presentation/PaymentMethodMessageCest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/PaymentMethod/Presentation/PaymentMethodMessageCest.php index db3d8823e8..1f63dc5240 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/PaymentMethod/Presentation/PaymentMethodMessageCest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/PaymentMethod/Presentation/PaymentMethodMessageCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\PaymentMethod\Presentation; use Generated\Shared\Transfer\AddPaymentMethodTransfer; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Product/Communication/InitializeProductExportMessageTest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Product/Communication/InitializeProductExportMessageTest.php index 00f749de1d..228600923d 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Product/Communication/InitializeProductExportMessageTest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/Product/Communication/InitializeProductExportMessageTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\Product\Communication; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/ProductReview/Communication/AddReviewsMessageTest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/ProductReview/Communication/AddReviewsMessageTest.php index 2cdf4851fc..8b33f108a0 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/ProductReview/Communication/AddReviewsMessageTest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/ProductReview/Communication/AddReviewsMessageTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\ProductReview\Communication; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/SearchHttp/Communication/SearchEndpointMessageTest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/SearchHttp/Communication/SearchEndpointMessageTest.php index 8159081292..311f164c28 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/SearchHttp/Communication/SearchEndpointMessageTest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/SearchHttp/Communication/SearchEndpointMessageTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\SearchHttp\Communication; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/TaxApp/Communication/TaxAppConfigMessageTest.php b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/TaxApp/Communication/TaxAppConfigMessageTest.php index 1f6a5a3fc7..d9b11d43ac 100644 --- a/tests/PyzTest/Zed/MessageBroker/MessageHandlers/TaxApp/Communication/TaxAppConfigMessageTest.php +++ b/tests/PyzTest/Zed/MessageBroker/MessageHandlers/TaxApp/Communication/TaxAppConfigMessageTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\MessageBroker\MessageHandlers\TaxApp\Communication; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/MessageBroker/_bootstrap.php b/tests/PyzTest/Zed/MessageBroker/_bootstrap.php index 0309024a6b..983fa161dc 100644 --- a/tests/PyzTest/Zed/MessageBroker/_bootstrap.php +++ b/tests/PyzTest/Zed/MessageBroker/_bootstrap.php @@ -1,3 +1,5 @@ checkIsActiveField(true); $i->submitNavigationForm(); $i->seeCurrentUrlEquals(NavigationPage::URL); - $idNavigation = $i->seeSuccessMessage(NavigationCreatePage::MESSAGE_SUCCESS); - return $idNavigation; + return (int)$i->seeSuccessMessage(NavigationCreatePage::MESSAGE_SUCCESS); } /** @@ -104,7 +105,7 @@ protected function read(NavigationGuiPresentationTester $i): void * * @return void */ - protected function update(NavigationGuiPresentationTester $i, $idNavigation): void + protected function update(NavigationGuiPresentationTester $i, int $idNavigation): void { $i->wantTo('Update existing navigation.'); $i->expect('Navigation is persisted in Zed'); diff --git a/tests/PyzTest/Zed/NavigationGui/Presentation/NavigationTreeCest.php b/tests/PyzTest/Zed/NavigationGui/Presentation/NavigationTreeCest.php index 983bcb14d9..37bd5083f7 100644 --- a/tests/PyzTest/Zed/NavigationGui/Presentation/NavigationTreeCest.php +++ b/tests/PyzTest/Zed/NavigationGui/Presentation/NavigationTreeCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\Presentation; use Generated\Shared\Transfer\NavigationNodeLocalizedAttributesTransfer; @@ -242,7 +244,7 @@ public function testChangeNavigationTreeStructure(NavigationGuiPresentationTeste * * @return void */ - public function testDeleteNavigationNode(NavigationGuiPresentationTester $i): void + public function testDeleteNavigationNode(NavigationGuiPresentationTester $i): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { /* * Test skipped because popup confirmation is not working as expected under phantomjs. diff --git a/tests/PyzTest/Zed/NavigationGui/_support/NavigationGuiPresentationTester.php b/tests/PyzTest/Zed/NavigationGui/_support/NavigationGuiPresentationTester.php index ed4b1644c3..602f97d577 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/NavigationGuiPresentationTester.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/NavigationGuiPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui; use Codeception\Actor; @@ -134,7 +136,7 @@ class NavigationGuiPresentationTester extends Actor * * @return void */ - public function setNameField($value): void + public function setNameField(string $value): void { $this->fillField('//*[@id="navigation_name"]', $value); } @@ -144,7 +146,7 @@ public function setNameField($value): void * * @return void */ - public function setKeyField($value): void + public function setKeyField(string $value): void { $this->fillField('//*[@id="navigation_key"]', $value); } @@ -154,7 +156,7 @@ public function setKeyField($value): void * * @return void */ - public function checkIsActiveField($checked): void + public function checkIsActiveField(bool $checked): void { if ($checked) { $this->checkOption('//*[@id="navigation_is_active"]'); @@ -185,7 +187,7 @@ public function submitDeleteNavigationForm(): void * * @return void */ - public function seeMatches($pattern, $value): void + public function seeMatches(string $pattern, string $value): void { $this->assertRegExp($pattern, $value); } @@ -203,7 +205,7 @@ public function clickEditFirstRowInList(): void * * @return string */ - public function seeSuccessMessage($expectedMessagePattern): string + public function seeSuccessMessage(string $expectedMessagePattern): string { $this->waitForElementVisible(static::FLASH_MESSAGE_TEXT_SELECTOR, 90); $successMessage = $this->grabTextFrom(static::FLASH_MESSAGE_TEXT_SELECTOR); @@ -250,7 +252,7 @@ public function prepareTestNavigationEntity(): int * * @return void */ - public function expandLocalizedForm($localeName): void + public function expandLocalizedForm(string $localeName): void { $this->click(sprintf(self::LOCALIZED_FORM_CONTAINER_SELECTOR, $localeName)); } @@ -268,7 +270,7 @@ public function clickRootNode(): void * * @return void */ - public function clickNode($idNavigationNode): void + public function clickNode(int $idNavigationNode): void { $this->click(sprintf(self::CHILD_NODE_ANCHOR_SELECTOR, $idNavigationNode)); } @@ -287,7 +289,7 @@ public function waitForNavigationTree(): void * * @return void */ - public function seeNumberOfNavigationNodes($count): void + public function seeNumberOfNavigationNodes(int $count): void { $this->seeNumberOfElements(self::NAVIGATION_NODE_SELECTOR, $count); } @@ -298,7 +300,7 @@ public function seeNumberOfNavigationNodes($count): void * * @return void */ - public function seeNavigationNodeHierarchy($idParentNavigationNode, $idChildNavigationNode): void + public function seeNavigationNodeHierarchy(int $idParentNavigationNode, int $idChildNavigationNode): void { $this->waitForElement(sprintf( self::NODE_CHILD_SELECTOR, @@ -313,7 +315,7 @@ public function seeNavigationNodeHierarchy($idParentNavigationNode, $idChildNavi * * @return void */ - public function seeNavigationNodeHierarchyByChildNodeName($idParentNavigationNode, $childNavigationNodeName): void + public function seeNavigationNodeHierarchyByChildNodeName(int $idParentNavigationNode, string $childNavigationNodeName): void { $this->seeElement(sprintf( self::NODE_NAME_CHILD_SELECTOR, @@ -328,7 +330,7 @@ public function seeNavigationNodeHierarchyByChildNodeName($idParentNavigationNod * * @return void */ - public function moveNavigationNode($idNavigationNode, $idTargetNavigationNode): void + public function moveNavigationNode(int $idNavigationNode, int $idTargetNavigationNode): void { $this->dragAndDrop( sprintf(self::CHILD_NODE_ANCHOR_SELECTOR, $idNavigationNode), @@ -349,7 +351,7 @@ public function saveNavigationTreeOrder(): void * * @return void */ - public function seeSuccessfulOrderSaveMessage($message): void + public function seeSuccessfulOrderSaveMessage(string $message): void { $this->waitForElement(self::SWEET_ALERT_SELECTOR, 5); $this->wait(1); @@ -396,7 +398,7 @@ public function clickAddChildNodeButton(): void * * @return void */ - public function submitCreateNodeFormWithoutType($title): void + public function submitCreateNodeFormWithoutType(string $title): void { $this->submitForm(self::NODE_FORM_SELECTOR, [ 'navigation_node[navigation_node_localized_attributes][0][title]' => $title, @@ -411,7 +413,7 @@ public function submitCreateNodeFormWithoutType($title): void * * @return void */ - public function submitCreateNodeFormWithExternalUrlType($title, $externalUrl): void + public function submitCreateNodeFormWithExternalUrlType(string $title, string $externalUrl): void { $this->submitForm(self::NODE_FORM_SELECTOR, [ 'navigation_node[node_type]' => 'external_url', @@ -429,7 +431,7 @@ public function submitCreateNodeFormWithExternalUrlType($title, $externalUrl): v * * @return void */ - public function submitUpdateNodeToCategoryType($categoryUrl_en_US, $categoryUrl_de_DE): void + public function submitUpdateNodeToCategoryType(string $categoryUrl_en_US, string $categoryUrl_de_DE): void { $this->submitForm(static::NODE_UPDATE_FORM_SELECTOR, [ 'navigation_node[node_type]' => 'category', @@ -445,7 +447,7 @@ public function submitUpdateNodeToCategoryType($categoryUrl_en_US, $categoryUrl_ * * @return void */ - public function submitCreateNodeFormWithCmsPageType($title, $cmsPageUrl_en_US, $cmsPageUrl_de_DE): void + public function submitCreateNodeFormWithCmsPageType(string $title, string $cmsPageUrl_en_US, string $cmsPageUrl_de_DE): void { $this->submitForm(self::NODE_FORM_SELECTOR, [ 'navigation_node[node_type]' => 'cms_page', @@ -482,8 +484,8 @@ public function prepareTestNavigationTreeEntities(NavigationTreeTransfer $naviga */ protected function createNavigationNodesRecursively( NavigationTreeNodeTransfer $navigationTreeNodeTransfer, - $idNavigation, - $idParentNavigationNode = null, + int $idNavigation, + ?int $idParentNavigationNode = null, ): void { $navigationNodeTransfer = $navigationTreeNodeTransfer->getNavigationNode(); $navigationNodeTransfer @@ -502,7 +504,7 @@ protected function createNavigationNodesRecursively( * * @return int */ - public function getIdLocale($locale): int + public function getIdLocale(string $locale): int { return $this->getLocator()->locale()->facade()->getLocale($locale)->getIdLocale(); } diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationCreatePage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationCreatePage.php index b666113470..14d051f31f 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationCreatePage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationCreatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationCreatePage diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationDeletePage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationDeletePage.php index d8c3391b71..66006a099b 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationDeletePage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationDeletePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationDeletePage diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeCreatePage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeCreatePage.php index 0d7b9ebabf..7a7aab3e02 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeCreatePage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeCreatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationNodeCreatePage diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeDeletePage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeDeletePage.php index 0a8ab93c38..fa8ee8a4d4 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeDeletePage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeDeletePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationNodeDeletePage diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeUpdatePage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeUpdatePage.php index 2ed7823825..13a5b4ff1d 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeUpdatePage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationNodeUpdatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationNodeUpdatePage diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationPage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationPage.php index e85715f42b..c749e4b444 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationPage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationPage diff --git a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationUpdatePage.php b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationUpdatePage.php index 766ac890bd..4395b9516e 100644 --- a/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationUpdatePage.php +++ b/tests/PyzTest/Zed/NavigationGui/_support/PageObject/NavigationUpdatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\NavigationGui\PageObject; class NavigationUpdatePage diff --git a/tests/PyzTest/Zed/OauthClient/Business/OAuthClientTest.php b/tests/PyzTest/Zed/OauthClient/Business/OAuthClientTest.php index 85af7e7ab4..7d1ad090e2 100644 --- a/tests/PyzTest/Zed/OauthClient/Business/OAuthClientTest.php +++ b/tests/PyzTest/Zed/OauthClient/Business/OAuthClientTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\OauthClient\Business; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/OauthClient/_support/OauthClientBusinessTester.php b/tests/PyzTest/Zed/OauthClient/_support/OauthClientBusinessTester.php index c35aeae0bb..3d61cbcb5f 100644 --- a/tests/PyzTest/Zed/OauthClient/_support/OauthClientBusinessTester.php +++ b/tests/PyzTest/Zed/OauthClient/_support/OauthClientBusinessTester.php @@ -5,7 +5,7 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ -declare(strict_types=1); +declare(strict_types = 1); namespace PyzTest\Zed\OauthClient; diff --git a/tests/PyzTest/Zed/Product/Business/ProductAbstractManagerTest.php b/tests/PyzTest/Zed/Product/Business/ProductAbstractManagerTest.php index 1384cbae62..56cc175b96 100644 --- a/tests/PyzTest/Zed/Product/Business/ProductAbstractManagerTest.php +++ b/tests/PyzTest/Zed/Product/Business/ProductAbstractManagerTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Product\Business; use Generated\Shared\Transfer\PriceProductTransfer; diff --git a/tests/PyzTest/Zed/Product/Business/ProductConcreteManagerTest.php b/tests/PyzTest/Zed/Product/Business/ProductConcreteManagerTest.php index a29e50f105..1b0d59633e 100644 --- a/tests/PyzTest/Zed/Product/Business/ProductConcreteManagerTest.php +++ b/tests/PyzTest/Zed/Product/Business/ProductConcreteManagerTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Product\Business; use Generated\Shared\Transfer\PriceProductTransfer; @@ -88,7 +90,7 @@ public function testGetConcreteProductsByAbstractProductIdShouldReturnFullyLoade * * @return \Orm\Zed\Product\Persistence\SpyProduct */ - protected function getProductConcreteEntityById($idProductConcrete): SpyProduct + protected function getProductConcreteEntityById(int $idProductConcrete): SpyProduct { return $this->productQueryContainer ->queryProduct() diff --git a/tests/PyzTest/Zed/Product/Business/ProductTestAbstract.php b/tests/PyzTest/Zed/Product/Business/ProductTestAbstract.php index d069528a73..afb7fde3ce 100644 --- a/tests/PyzTest/Zed/Product/Business/ProductTestAbstract.php +++ b/tests/PyzTest/Zed/Product/Business/ProductTestAbstract.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Product\Business; use ArrayObject; @@ -434,7 +436,7 @@ protected function setupDefaultProducts(): void * * @return \Orm\Zed\Product\Persistence\SpyProductAbstract */ - protected function getProductAbstractEntityById($idProductAbstract): SpyProductAbstract + protected function getProductAbstractEntityById(int $idProductAbstract): SpyProductAbstract { return $this->productQueryContainer ->queryProductAbstract() @@ -447,7 +449,7 @@ protected function getProductAbstractEntityById($idProductAbstract): SpyProductA * * @return \Orm\Zed\Product\Persistence\SpyProduct */ - protected function getProductConcreteEntityByAbstractId($idProductAbstract): SpyProduct + protected function getProductConcreteEntityByAbstractId(int $idProductAbstract): SpyProduct { return $this->productQueryContainer ->queryProduct() diff --git a/tests/PyzTest/Zed/Product/_support/ProductBusinessTester.php b/tests/PyzTest/Zed/Product/_support/ProductBusinessTester.php index ff12b5497f..9b14544c28 100644 --- a/tests/PyzTest/Zed/Product/_support/ProductBusinessTester.php +++ b/tests/PyzTest/Zed/Product/_support/ProductBusinessTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Product; use Codeception\Actor; diff --git a/tests/PyzTest/Zed/ProductOption/Business/ProductOptionFacadeAggregatorTest.php b/tests/PyzTest/Zed/ProductOption/Business/ProductOptionFacadeAggregatorTest.php index b507e6d5dd..879b72e32d 100644 --- a/tests/PyzTest/Zed/ProductOption/Business/ProductOptionFacadeAggregatorTest.php +++ b/tests/PyzTest/Zed/ProductOption/Business/ProductOptionFacadeAggregatorTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\ProductOption\Business; use Codeception\Test\Unit; @@ -120,9 +122,7 @@ protected function createOmsState(): SpyOmsOrderItemState */ protected function createProductOptionFacade(): ProductOptionFacade { - $productOptionFacade = new ProductOptionFacade(); - - return $productOptionFacade; + return new ProductOptionFacade(); } /** @@ -196,7 +196,7 @@ protected function createSalesOrderItemOptionEntity(SpySalesOrderItem $salesOrde * * @return \Generated\Shared\Transfer\OrderTransfer */ - protected function createOrderTransferWithRelatedPersistedData($createOptions = true): OrderTransfer + protected function createOrderTransferWithRelatedPersistedData(bool $createOptions = true): OrderTransfer { $address1 = $this->createSalesOrderAddress(); $address2 = $this->createSalesOrderAddress(); diff --git a/tests/PyzTest/Zed/ProductOption/_support/ProductOptionBusinessTester.php b/tests/PyzTest/Zed/ProductOption/_support/ProductOptionBusinessTester.php index b1141378fe..ce42fbe640 100644 --- a/tests/PyzTest/Zed/ProductOption/_support/ProductOptionBusinessTester.php +++ b/tests/PyzTest/Zed/ProductOption/_support/ProductOptionBusinessTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\ProductOption; use Codeception\Actor; diff --git a/tests/PyzTest/Zed/ProductRelation/Presentation/ProductRelationCreateRelationCest.php b/tests/PyzTest/Zed/ProductRelation/Presentation/ProductRelationCreateRelationCest.php index be2dee8d30..357edc44ec 100644 --- a/tests/PyzTest/Zed/ProductRelation/Presentation/ProductRelationCreateRelationCest.php +++ b/tests/PyzTest/Zed/ProductRelation/Presentation/ProductRelationCreateRelationCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\ProductRelation\Presentation; use PyzTest\Zed\ProductRelation\PageObject\ProductRelationCreatePage; diff --git a/tests/PyzTest/Zed/ProductRelation/_support/PageObject/ProductRelationCreatePage.php b/tests/PyzTest/Zed/ProductRelation/_support/PageObject/ProductRelationCreatePage.php index bf72d4ae72..9690fad022 100644 --- a/tests/PyzTest/Zed/ProductRelation/_support/PageObject/ProductRelationCreatePage.php +++ b/tests/PyzTest/Zed/ProductRelation/_support/PageObject/ProductRelationCreatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\ProductRelation\PageObject; class ProductRelationCreatePage diff --git a/tests/PyzTest/Zed/ProductRelation/_support/ProductRelationPresentationTester.php b/tests/PyzTest/Zed/ProductRelation/_support/ProductRelationPresentationTester.php index 425f784bdb..356e504101 100644 --- a/tests/PyzTest/Zed/ProductRelation/_support/ProductRelationPresentationTester.php +++ b/tests/PyzTest/Zed/ProductRelation/_support/ProductRelationPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\ProductRelation; use Codeception\Actor; @@ -76,7 +78,7 @@ class ProductRelationPresentationTester extends Actor * * @return $this */ - public function selectRelationType($type) + public function selectRelationType(string $type) { $this->waitForElement(static::PRODUCT_RELATION_TYPE_SELECTOR, static::ELEMENT_TIMEOUT); $this->selectOption(static::PRODUCT_RELATION_TYPE_SELECTOR, $type); @@ -89,7 +91,7 @@ public function selectRelationType($type) * * @return $this */ - public function filterProductsByName($name) + public function filterProductsByName(string $name) { $this->waitForElement(static::PRODUCT_TABLE_BODY_XPATH, static::ELEMENT_TIMEOUT); $this->fillField(static::PRODUCT_TABLE_FILTER_LABEL_INPUT_SELECTOR, $name); @@ -102,7 +104,7 @@ public function filterProductsByName($name) * * @return $this */ - public function selectProduct($sku) + public function selectProduct(string $sku) { $this->waitForElement(static::PRODUCT_TABLE_BODY_XPATH, static::ELEMENT_TIMEOUT); $buttonElementId = sprintf('//*[@id="select-product-%s"]', $sku); @@ -133,7 +135,7 @@ public function switchToAssignProductsTab() * * @return $this */ - public function selectProductRule($ruleName, $operator, $value) + public function selectProductRule(string $ruleName, string $operator, string $value) { $ruleSelectorBaseId = sprintf('[@id="builder_rule_%d"]', $this->numberOfRulesSelected); diff --git a/tests/PyzTest/Zed/PropelOrm/Business/PropelOrmTransactionHandlerTest.php b/tests/PyzTest/Zed/PropelOrm/Business/PropelOrmTransactionHandlerTest.php index d02fcbc579..5f1eebdfb7 100644 --- a/tests/PyzTest/Zed/PropelOrm/Business/PropelOrmTransactionHandlerTest.php +++ b/tests/PyzTest/Zed/PropelOrm/Business/PropelOrmTransactionHandlerTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\PropelOrm\Business; use Codeception\Test\Unit; @@ -148,7 +150,7 @@ public function testAddProductWithTransactionHandlingShouldCommitAndReturnValue( * * @return \Orm\Zed\Product\Persistence\SpyProductAbstract */ - protected function getProductAbstractToAssert($idProductAbstract): SpyProductAbstract + protected function getProductAbstractToAssert(int $idProductAbstract): SpyProductAbstract { return $this->productQueryContainer ->queryProductAbstract() @@ -161,7 +163,7 @@ protected function getProductAbstractToAssert($idProductAbstract): SpyProductAbs * * @return \Orm\Zed\Product\Persistence\SpyProductAbstractLocalizedAttributes */ - protected function getLocalizedAttributesToAssert($idProductAbstract): SpyProductAbstractLocalizedAttributes + protected function getLocalizedAttributesToAssert(int $idProductAbstract): SpyProductAbstractLocalizedAttributes { return $this->productQueryContainer ->queryProductAbstractLocalizedAttributes($idProductAbstract) diff --git a/tests/PyzTest/Zed/PropelOrm/_support/PropelOrmBusinessTester.php b/tests/PyzTest/Zed/PropelOrm/_support/PropelOrmBusinessTester.php index 045eeec527..ac86318b18 100644 --- a/tests/PyzTest/Zed/PropelOrm/_support/PropelOrmBusinessTester.php +++ b/tests/PyzTest/Zed/PropelOrm/_support/PropelOrmBusinessTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\PropelOrm; use Codeception\Actor; diff --git a/tests/PyzTest/Zed/PropelOrm/_support/Stub/ProductManagerStub.php b/tests/PyzTest/Zed/PropelOrm/_support/Stub/ProductManagerStub.php index 50230896b9..b9cda631a8 100644 --- a/tests/PyzTest/Zed/PropelOrm/_support/Stub/ProductManagerStub.php +++ b/tests/PyzTest/Zed/PropelOrm/_support/Stub/ProductManagerStub.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\PropelOrm\Stub; use Exception; @@ -35,7 +37,7 @@ public function __construct(ProductQueryContainerInterface $productQueryContaine * * @return \Orm\Zed\Product\Persistence\SpyProductAbstract */ - protected function createProductAbstractEntity($sku): SpyProductAbstract + protected function createProductAbstractEntity(string $sku): SpyProductAbstract { $productAbstractEntity = new SpyProductAbstract(); $productAbstractEntity->setSku($sku); @@ -51,7 +53,7 @@ protected function createProductAbstractEntity($sku): SpyProductAbstract * * @return \Orm\Zed\Product\Persistence\SpyProductAbstractLocalizedAttributes */ - protected function createLocalizedAttributeEntity($name, $idProductAbstract): SpyProductAbstractLocalizedAttributes + protected function createLocalizedAttributeEntity(string $name, int $idProductAbstract): SpyProductAbstractLocalizedAttributes { $localizedAttributeEntity = new SpyProductAbstractLocalizedAttributes(); $localizedAttributeEntity->setAttributes('{}'); @@ -69,7 +71,7 @@ protected function createLocalizedAttributeEntity($name, $idProductAbstract): Sp * * @return int */ - public function addProductWithoutTransactionHandling($sku, $name): int + public function addProductWithoutTransactionHandling(string $sku, string $name): int { $this->productQueryContainer->getConnection()->beginTransaction(); @@ -87,7 +89,7 @@ public function addProductWithoutTransactionHandling($sku, $name): int * * @return void */ - public function addProductWithoutTransactionHandlingShouldThrowException($sku, $name): void + public function addProductWithoutTransactionHandlingShouldThrowException(string $sku, string $name): void { $this->productQueryContainer->getConnection()->beginTransaction(); @@ -114,7 +116,7 @@ public function addProductWithoutTransactionHandlingShouldThrowException($sku, $ * * @return void */ - public function addProductWithTransactionHandlingShouldRollbackAndThrowException($sku, $name): void + public function addProductWithTransactionHandlingShouldRollbackAndThrowException(string $sku, string $name): void { $this->handleDatabaseTransaction(function () use ($sku, $name): void { $productAbstractEntity = new SpyProductAbstract(); @@ -139,7 +141,7 @@ public function addProductWithTransactionHandlingShouldRollbackAndThrowException * * @return \Orm\Zed\Product\Persistence\SpyProductAbstractLocalizedAttributes */ - public function addProductWithTransactionHandlingShouldCommitAndReturnValue($sku, $name): SpyProductAbstractLocalizedAttributes + public function addProductWithTransactionHandlingShouldCommitAndReturnValue(string $sku, string $name): SpyProductAbstractLocalizedAttributes { return $this->handleDatabaseTransaction(function () use ($sku, $name) { $productAbstractEntity = new SpyProductAbstract(); diff --git a/tests/PyzTest/Zed/Sales/_support/PageObject/OrderDetailPage.php b/tests/PyzTest/Zed/Sales/_support/PageObject/OrderDetailPage.php index dcc6849a85..1ff3f91704 100644 --- a/tests/PyzTest/Zed/Sales/_support/PageObject/OrderDetailPage.php +++ b/tests/PyzTest/Zed/Sales/_support/PageObject/OrderDetailPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Sales\PageObject; class OrderDetailPage diff --git a/tests/PyzTest/Zed/Sales/_support/PageObject/OrderListPage.php b/tests/PyzTest/Zed/Sales/_support/PageObject/OrderListPage.php index 5da0bfdcbd..e436368a26 100644 --- a/tests/PyzTest/Zed/Sales/_support/PageObject/OrderListPage.php +++ b/tests/PyzTest/Zed/Sales/_support/PageObject/OrderListPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Sales\PageObject; class OrderListPage diff --git a/tests/PyzTest/Zed/Tax/Presentation/TaxRateCreateCest.php b/tests/PyzTest/Zed/Tax/Presentation/TaxRateCreateCest.php index 83f5f494cf..ae1043499f 100644 --- a/tests/PyzTest/Zed/Tax/Presentation/TaxRateCreateCest.php +++ b/tests/PyzTest/Zed/Tax/Presentation/TaxRateCreateCest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Tax\Presentation; use PyzTest\Zed\Tax\PageObject\TaxRateCreatePage; diff --git a/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateCreatePage.php b/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateCreatePage.php index 39c13a1047..4be1ab0f81 100644 --- a/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateCreatePage.php +++ b/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateCreatePage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Tax\PageObject; class TaxRateCreatePage diff --git a/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateListPage.php b/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateListPage.php index c2d15d4a7a..f916effad6 100644 --- a/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateListPage.php +++ b/tests/PyzTest/Zed/Tax/_support/PageObject/TaxRateListPage.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Tax\PageObject; class TaxRateListPage diff --git a/tests/PyzTest/Zed/Tax/_support/TaxPresentationTester.php b/tests/PyzTest/Zed/Tax/_support/TaxPresentationTester.php index 36750fa8b9..9c34ebeb4d 100644 --- a/tests/PyzTest/Zed/Tax/_support/TaxPresentationTester.php +++ b/tests/PyzTest/Zed/Tax/_support/TaxPresentationTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Tax; use Codeception\Actor; @@ -37,7 +39,7 @@ class TaxPresentationTester extends Actor * * @return void */ - public function createTaxRate($taxRateName): void + public function createTaxRate(string $taxRateName): void { $i = $this; @@ -50,7 +52,7 @@ public function createTaxRate($taxRateName): void * * @return void */ - protected function fillTaxRateForm($taxRateName): void + protected function fillTaxRateForm(string $taxRateName): void { $i = $this; @@ -69,7 +71,7 @@ protected function fillTaxRateForm($taxRateName): void * * @return void */ - public function createTaxRateWithoutSaving($taxRateName): void + public function createTaxRateWithoutSaving(string $taxRateName): void { $i = $this; $i->fillTaxRateForm($taxRateName); @@ -80,7 +82,7 @@ public function createTaxRateWithoutSaving($taxRateName): void * * @return void */ - public function searchForTaxRate($taxRateName): void + public function searchForTaxRate(string $taxRateName): void { $i = $this; @@ -92,7 +94,7 @@ public function searchForTaxRate($taxRateName): void * * @return void */ - public function deleteTaxRate($taxRateName): void + public function deleteTaxRate(string $taxRateName): void { $i = $this; $i->amOnPage(TaxRateListPage::URL); @@ -118,7 +120,7 @@ public function seeErrorMessages(): void * * @return void */ - public function createOneAndTheSameTaxRate($taxRateName): void + public function createOneAndTheSameTaxRate(string $taxRateName): void { $i = $this; @@ -149,7 +151,7 @@ public function createOneAndTheSameTaxRate($taxRateName): void * * @return void */ - public function editTaxRateWithValidData($taxRateName): void + public function editTaxRateWithValidData(string $taxRateName): void { $i = $this; @@ -175,12 +177,14 @@ public function deleteTaxRateFromEditForm(): void * * @return void */ - public function removeTaxRateFromDatabase($taxRateName): void + public function removeTaxRateFromDatabase(string $taxRateName): void { $taxRateQuery = new SpyTaxRateQuery(); $taxRateEntity = $taxRateQuery->findOneByName(TaxRateCreatePage::$taxRateData[$taxRateName]['name']); - if ($taxRateEntity) { - $taxRateEntity->delete(); + if (!$taxRateEntity) { + return; } + + $taxRateEntity->delete(); } } diff --git a/tests/PyzTest/Zed/Testify/_support/Helper/BootstrapHelper.php b/tests/PyzTest/Zed/Testify/_support/Helper/BootstrapHelper.php index 3dd48c0872..dc6de3415d 100644 --- a/tests/PyzTest/Zed/Testify/_support/Helper/BootstrapHelper.php +++ b/tests/PyzTest/Zed/Testify/_support/Helper/BootstrapHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Testify\Helper; use Codeception\Lib\Framework; @@ -24,7 +26,7 @@ class BootstrapHelper extends Framework * * @return void */ - public function _before(TestInterface $test): void + public function _before(TestInterface $test): void // phpcs:ignore SlevomatCodingStandard.Functions.UnusedParameter { $this->disableWhoopsErrorHandler(); diff --git a/tests/PyzTest/Zed/Testify/_support/Helper/LoginHelper.php b/tests/PyzTest/Zed/Testify/_support/Helper/LoginHelper.php index da3debd138..b3798195d3 100644 --- a/tests/PyzTest/Zed/Testify/_support/Helper/LoginHelper.php +++ b/tests/PyzTest/Zed/Testify/_support/Helper/LoginHelper.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Testify\Helper; use Codeception\Module; diff --git a/tests/PyzTest/Zed/Touch/Business/TouchTest.php b/tests/PyzTest/Zed/Touch/Business/TouchTest.php index 286257d269..52691d8d48 100644 --- a/tests/PyzTest/Zed/Touch/Business/TouchTest.php +++ b/tests/PyzTest/Zed/Touch/Business/TouchTest.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Touch\Business; use Codeception\Test\Unit; diff --git a/tests/PyzTest/Zed/Touch/_support/TouchBusinessTester.php b/tests/PyzTest/Zed/Touch/_support/TouchBusinessTester.php index 9b0721b13f..33adcd4a85 100644 --- a/tests/PyzTest/Zed/Touch/_support/TouchBusinessTester.php +++ b/tests/PyzTest/Zed/Touch/_support/TouchBusinessTester.php @@ -5,6 +5,8 @@ * For full license information, please view the LICENSE file that was distributed with this source code. */ +declare(strict_types = 1); + namespace PyzTest\Zed\Touch; use Codeception\Actor;