Test Failed
Push — master ( 41a437...f7e877 )
by David
03:29
created
Service/CurrencyManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         /** @var SkuskuCurrencyInterface $locale */
66 66
         $locale = $this->em->getRepository(SkuskuCurrencyInterface::class)->findOneByIsoCode($currencyIdentifier);
67 67
 
68
-        if( !$locale ) {
68
+        if (!$locale) {
69 69
             throw new CurrencyNotFoundException();
70 70
         }
71 71
 
Please login to merge, or discard this patch.
DependencyInjection/GGGGinoSkuskuCartExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $container->setParameter('ggggino_skuskucart.stepform_class', $config['stepform_class']);
33 33
 
34 34
         foreach ($config['templates'] as $key => $template) {
35
-            $container->setParameter('ggggino_skuskucart.templates.' . $key, $template);
35
+            $container->setParameter('ggggino_skuskucart.templates.'.$key, $template);
36 36
         }
37 37
 
38 38
         $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
Please login to merge, or discard this patch.
Exception/CurrencyNotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function __construct($message = "", $code = 0, \Exception $previous = null)
14 14
     {
15 15
         if (!empty($message)) {
16
-            $message = ": " . $message;
16
+            $message = ": ".$message;
17 17
         }
18 18
 
19 19
         $finalMessage = sprintf("Currency not found, maybe the db table is empty%s", $message);
Please login to merge, or discard this patch.