for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright © 2016-present Spryker Systems GmbH. All rights reserved.
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerShop\Yves\CompanyPage;
use Spryker\Yves\Kernel\AbstractBundleConfig;
class CompanyPageConfig extends AbstractBundleConfig
{
protected const ZIP_CODE_CONSTRAINT_PATTERN = '/^\d{5}$/';
* @return string
public function getZipCodeConstraintPattern(): string
return static::ZIP_CODE_CONSTRAINT_PATTERN;
}