@@ -17,8 +17,8 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | |
| 19 | 19 | /** @var \Composer\Autoload\ClassLoader $loader */ |
| 20 | -$loader = require __DIR__.'/../app/autoload.php'; |
|
| 21 | -include_once __DIR__.'/../var/bootstrap.php.cache'; |
|
| 20 | +$loader = require __DIR__ . '/../app/autoload.php'; |
|
| 21 | +include_once __DIR__ . '/../var/bootstrap.php.cache'; |
|
| 22 | 22 | |
| 23 | 23 | $kernel = new AppKernel('prod', false); |
| 24 | 24 | $kernel->loadClassCache(); |
@@ -21,12 +21,12 @@ |
||
| 21 | 21 | || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1', '113.0.0.1', '10.0.0.1'], true) || php_sapi_name() === 'cli-server') |
| 22 | 22 | ) { |
| 23 | 23 | header('HTTP/1.0 403 Forbidden'); |
| 24 | - exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); |
|
| 24 | + exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.'); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** @var \Composer\Autoload\ClassLoader $loader */ |
| 28 | -$loader = require __DIR__.'/../app/autoload.php'; |
|
| 29 | -include_once __DIR__.'/../var/bootstrap.php.cache'; |
|
| 28 | +$loader = require __DIR__ . '/../app/autoload.php'; |
|
| 29 | +include_once __DIR__ . '/../var/bootstrap.php.cache'; |
|
| 30 | 30 | |
| 31 | 31 | $kernel = new AppKernel('test_cached', false); |
| 32 | 32 | $kernel->loadClassCache(); |
@@ -27,12 +27,12 @@ |
||
| 27 | 27 | || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1', '113.0.0.1', '10.0.0.1'], true) || php_sapi_name() === 'cli-server') |
| 28 | 28 | )) { |
| 29 | 29 | header('HTTP/1.0 403 Forbidden'); |
| 30 | - exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); |
|
| 30 | + exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.'); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** @var \Composer\Autoload\ClassLoader $loader */ |
| 34 | -$loader = require __DIR__.'/../app/autoload.php'; |
|
| 35 | -include_once __DIR__.'/../var/bootstrap.php.cache'; |
|
| 34 | +$loader = require __DIR__ . '/../app/autoload.php'; |
|
| 35 | +include_once __DIR__ . '/../var/bootstrap.php.cache'; |
|
| 36 | 36 | |
| 37 | 37 | Debug::enable(); |
| 38 | 38 | |
@@ -12,7 +12,6 @@ |
||
| 12 | 12 | namespace Sylius\Component\Product\Model; |
| 13 | 13 | |
| 14 | 14 | use Sylius\Component\Resource\Model\TranslatableTrait; |
| 15 | -use Sylius\Component\Resource\Model\TranslationInterface; |
|
| 16 | 15 | |
| 17 | 16 | /** |
| 18 | 17 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -24,7 +24,8 @@ |
||
| 24 | 24 | |
| 25 | 25 | final class UniqueSimpleProductCodeValidatorSpec extends ObjectBehavior |
| 26 | 26 | { |
| 27 | - function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) { |
|
| 27 | + function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) |
|
| 28 | + { |
|
| 28 | 29 | $this->beConstructedWith($productVariantRepository); |
| 29 | 30 | $this->initialize($context); |
| 30 | 31 | } |
@@ -15,8 +15,6 @@ |
||
| 15 | 15 | use Symfony\Component\Config\FileLocator; |
| 16 | 16 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
| 17 | 17 | use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; |
| 18 | -use Symfony\Component\DependencyInjection\Parameter; |
|
| 19 | -use Symfony\Component\DependencyInjection\Reference; |
|
| 20 | 18 | |
| 21 | 19 | /** |
| 22 | 20 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $this->registerResources('sylius', $config['driver'], $config['resources'], $container); |
| 33 | 33 | |
@@ -174,6 +174,8 @@ discard block |
||
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
| 177 | + * @param string $code |
|
| 178 | + * @param string $name |
|
| 177 | 179 | * @return ChannelInterface |
| 178 | 180 | */ |
| 179 | 181 | private function createChannel($code, $name) |
@@ -197,6 +199,7 @@ discard block |
||
| 197 | 199 | } |
| 198 | 200 | |
| 199 | 201 | /** |
| 202 | + * @param string $currencyCode |
|
| 200 | 203 | * @return CurrencyInterface |
| 201 | 204 | */ |
| 202 | 205 | private function provideCurrency($currencyCode = null) |
@@ -24,6 +24,7 @@ discard block |
||
| 24 | 24 | { |
| 25 | 25 | /** |
| 26 | 26 | * @throws ElementNotFoundException |
| 27 | + * @return void |
|
| 27 | 28 | */ |
| 28 | 29 | public function addToCart(); |
| 29 | 30 | |
@@ -31,6 +32,7 @@ discard block |
||
| 31 | 32 | * @param string $quantity |
| 32 | 33 | * |
| 33 | 34 | * @throws ElementNotFoundException |
| 35 | + * @return void |
|
| 34 | 36 | */ |
| 35 | 37 | public function addToCartWithQuantity($quantity); |
| 36 | 38 | |
@@ -38,6 +40,7 @@ discard block |
||
| 38 | 40 | * @param string $variant |
| 39 | 41 | * |
| 40 | 42 | * @throws ElementNotFoundException |
| 43 | + * @return void |
|
| 41 | 44 | */ |
| 42 | 45 | public function addToCartWithVariant($variant); |
| 43 | 46 | |
@@ -46,6 +49,7 @@ discard block |
||
| 46 | 49 | * @param string $optionValue |
| 47 | 50 | * |
| 48 | 51 | * @throws ElementNotFoundException |
| 52 | + * @return void |
|
| 49 | 53 | */ |
| 50 | 54 | public function addToCartWithOption(ProductOptionInterface $option, $optionValue); |
| 51 | 55 | |
@@ -56,6 +60,7 @@ discard block |
||
| 56 | 60 | |
| 57 | 61 | /** |
| 58 | 62 | * @param string $url |
| 63 | + * @return void |
|
| 59 | 64 | */ |
| 60 | 65 | public function visit($url); |
| 61 | 66 | |
@@ -67,7 +72,7 @@ discard block |
||
| 67 | 72 | public function getAttributeByName($attributeName); |
| 68 | 73 | |
| 69 | 74 | /** |
| 70 | - * @return array |
|
| 75 | + * @return \Behat\Mink\Element\NodeElement[] |
|
| 71 | 76 | */ |
| 72 | 77 | public function getAttributes(); |
| 73 | 78 | |
@@ -80,6 +85,7 @@ discard block |
||
| 80 | 85 | |
| 81 | 86 | /** |
| 82 | 87 | * @param int $timeout |
| 88 | + * @return void |
|
| 83 | 89 | */ |
| 84 | 90 | public function waitForValidationErrors($timeout); |
| 85 | 91 | |
@@ -123,11 +129,13 @@ discard block |
||
| 123 | 129 | /** |
| 124 | 130 | * @param string $optionName |
| 125 | 131 | * @param string $optionValue |
| 132 | + * @return void |
|
| 126 | 133 | */ |
| 127 | 134 | public function selectOption($optionName, $optionValue); |
| 128 | 135 | |
| 129 | 136 | /** |
| 130 | 137 | * @param string $variantName |
| 138 | + * @return void |
|
| 131 | 139 | */ |
| 132 | 140 | public function selectVariant($variantName); |
| 133 | 141 | |
@@ -116,7 +116,7 @@ |
||
| 116 | 116 | */ |
| 117 | 117 | public function iChangeRatioTo($ratio) |
| 118 | 118 | { |
| 119 | - $this->updatePage->changeRatio((float)$ratio); |
|
| 119 | + $this->updatePage->changeRatio((float) $ratio); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |