Completed
Push — resource-classnames ( 503d2e )
by Kamil
18:12
created
ReviewBundle/DependencyInjection/Compiler/RegisterReviewFactoryPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
     public function process(ContainerBuilder $container)
28 28
     {
29 29
         foreach ($container->getParameter('sylius.review.subjects') as $subject => $configuration) {
30
-            $factory = $container->findDefinition('sylius.factory.'.$subject.'_review');
30
+            $factory = $container->findDefinition('sylius.factory.' . $subject . '_review');
31 31
             $reviewFactoryDefinition = new Definition(ReviewFactory::class);
32 32
 
33
-            $reviewFactory = $container->setDefinition(sprintf('sylius.factory.'.$subject.'_review'), $reviewFactoryDefinition);
33
+            $reviewFactory = $container->setDefinition(sprintf('sylius.factory.' . $subject . '_review'), $reviewFactoryDefinition);
34 34
             $reviewFactory->addArgument($factory);
35 35
         }
36 36
     }
Please login to merge, or discard this patch.
src/Sylius/Component/Taxonomy/Generator/TaxonSlugGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
         $parent = $this->taxonRepository->find($parentId);
51 51
         Assert::notNull($parent, sprintf('There is no parent taxon with id %d.', $parentId));
52 52
 
53
-        return $parent->getSlug().self::SLUG_SEPARATOR.$taxonSlug;
53
+        return $parent->getSlug() . self::SLUG_SEPARATOR . $taxonSlug;
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Taxonomy/spec/Generator/TaxonSlugGeneratorSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,12 +44,12 @@
 block discarded – undo
44 44
         $taxonRepository->find(1)->willReturn($parent);
45 45
         $parent->getSlug()->willReturn('board-games');
46 46
 
47
-        $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games');;
47
+        $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games'); ;
48 48
     }
49 49
 
50 50
     function it_generates_slug_based_on_new_taxon_name_if_this_taxon_has_no_parent()
51 51
     {
52
-        $this->generate('Board games')->shouldReturn('board-games');;
52
+        $this->generate('Board games')->shouldReturn('board-games'); ;
53 53
     }
54 54
 
55 55
     function it_throws_exception_if_parent_taxon_with_given_id_does_not_exist(
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Domain/ManagingOrdersContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
      */
168 168
     public function thisOrderHasNotBeenPaidForDays(OrderInterface $order, $amount, $time)
169 169
     {
170
-        $order->setCheckoutCompletedAt(new \DateTime('-'.$amount.' '.$time));
170
+        $order->setCheckoutCompletedAt(new \DateTime('-' . $amount . ' ' . $time));
171 171
         $this->orderManager->flush();
172 172
 
173 173
         $this->unpaidOrdersStateUpdater->cancel();
Please login to merge, or discard this patch.
Core/spec/Taxation/Applicator/OrderShipmentTaxesApplicatorSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         $order->getShippingTotal()->willReturn(10);
113 113
         $order->getShipments()->willReturn(new ArrayCollection([]));
114 114
 
115
-        $this->shouldThrow(\LogicException::class)->during('apply', [$order, $zone]);;
115
+        $this->shouldThrow(\LogicException::class)->during('apply', [$order, $zone]); ;
116 116
     }
117 117
 
118 118
     function it_does_nothing_if_tax_rate_cannot_be_resolved(
Please login to merge, or discard this patch.
app/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Composer\Autoload\ClassLoader;
5 5
 
6 6
 /** @var ClassLoader $loader */
7
-$loader = require __DIR__.'/../vendor/autoload.php';
7
+$loader = require __DIR__ . '/../vendor/autoload.php';
8 8
 
9 9
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
10 10
 
Please login to merge, or discard this patch.
web/app.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
web/app_dev.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
web/app_test_cached.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.