Completed
Push — health ( 1849cb...fddfa2 )
by
unknown
44s
created
src/SWP/Bundle/ContentBundle/Model/Article.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
     {
334 334
         return $this->getExtraCollection()
335 335
             ->map(
336
-                function (ArticleExtraFieldInterface $field) {
336
+                function(ArticleExtraFieldInterface $field) {
337 337
                     return $field->toApiFormat();
338 338
                 }
339 339
             )->toArray();
@@ -536,8 +536,8 @@  discard block
 block discarded – undo
536 536
             if (is_array($value)) {
537 537
                 $this->addEmbedExtra(ArticleExtraEmbedField::newFromValue($key, $value));
538 538
             } else {
539
-                if(is_int($value)) {
540
-                    $value = (string)$value;
539
+                if (is_int($value)) {
540
+                    $value = (string) $value;
541 541
                 }
542 542
                 $this->addTextExtra(ArticleExtraTextField::newFromValue($key, $value));
543 543
             }
Please login to merge, or discard this patch.
src/SWP/Bundle/MenuBundle/Model/MenuItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -691,7 +691,7 @@
 block discarded – undo
691 691
      */
692 692
     public function isCurrent(): bool
693 693
     {
694
-        return ($this->isCurrent?true:false);
694
+        return ($this->isCurrent ?true:false);
695 695
     }
696 696
 
697 697
     /**
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Migrations/Version20170207132939.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         // this up() migration is auto-generated, please modify it to your needs
19 19
         $this->abortIf('postgresql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'postgresql\'.');
20
-	$this->addSql('ALTER TABLE swp_article ADD COLUMN IF NOT EXISTS feature_media INT DEFAULT NULL');
20
+    $this->addSql('ALTER TABLE swp_article ADD COLUMN IF NOT EXISTS feature_media INT DEFAULT NULL');
21 21
         $this->addSql('ALTER TABLE swp_article ADD CONSTRAINT FK_FB21E858A372AB05 FOREIGN KEY (feature_media) REFERENCES swp_article_media (id) ON DELETE SET NULL NOT DEFERRABLE INITIALLY IMMEDIATE');
22 22
         $this->addSql('CREATE INDEX IDX_FB21E858A372AB05 ON swp_article (feature_media)');
23 23
     }
Please login to merge, or discard this patch.
src/SWP/Bundle/MultiTenancyBundle/Command/GetPublicSuffixListCommand.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -31,18 +31,18 @@
 block discarded – undo
31 31
 
32 32
     public function execute(InputInterface $input, OutputInterface $output)
33 33
     {
34
-        $output->writeln('<info>Fetching data from </info> ' . $this->suffixListEndpoint);
34
+        $output->writeln('<info>Fetching data from </info> '.$this->suffixListEndpoint);
35 35
         $filesystem = new Filesystem();
36
-        $dir = $this->container->getParameter('kernel.project_dir') . '/src/SWP/Component/MultiTenancy/';
37
-        if ($filesystem->exists($dir . $this->suffixListFilename)) {
38
-            $filesystem->remove($dir . $this->suffixListFilename);
36
+        $dir = $this->container->getParameter('kernel.project_dir').'/src/SWP/Component/MultiTenancy/';
37
+        if ($filesystem->exists($dir.$this->suffixListFilename)) {
38
+            $filesystem->remove($dir.$this->suffixListFilename);
39 39
         }
40 40
         $filesystem->mkdir($dir);
41
-        $filesystem->touch($dir . $this->suffixListFilename);
41
+        $filesystem->touch($dir.$this->suffixListFilename);
42 42
         $data = file_get_contents($this->suffixListEndpoint);
43
-        $filesystem->dumpFile($dir . $this->suffixListFilename, $data);
43
+        $filesystem->dumpFile($dir.$this->suffixListFilename, $data);
44 44
 
45
-        $output->writeln('<info>Data saved into:</info> ' . $dir . $this->suffixListFilename);
45
+        $output->writeln('<info>Data saved into:</info> '.$dir.$this->suffixListFilename);
46 46
         return 0;
47 47
     }
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Asset/GoogleAssetUrlGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function generateUrl(FileInterface $file, string $basePath): string
27 27
     {
28
-        $key = $basePath . '/' . $file->getAssetId() . '.' . $file->getFileExtension();
29
-        return 'https://storage.googleapis.com/' . $this->bucket->name() . '/' . $key;
28
+        $key = $basePath.'/'.$file->getAssetId().'.'.$file->getFileExtension();
29
+        return 'https://storage.googleapis.com/'.$this->bucket->name().'/'.$key;
30 30
     }
31 31
 }
32 32
\ No newline at end of file
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Factory/GCSClientFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public static function createGCSClient(ContainerInterface $container, string $keyFilePath): StorageClient
17 17
     {
18
-        $path = $container->getParameter('kernel.project_dir') . '/config/gcs/' . $keyFilePath;
18
+        $path = $container->getParameter('kernel.project_dir').'/config/gcs/'.$keyFilePath;
19 19
         return new StorageClient([
20 20
             'keyFilePath' => $path,
21 21
         ]);
Please login to merge, or discard this patch.
src/SWP/Component/MultiTenancy/Resolver/TenantResolver.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             return $domainString;
87 87
         }
88 88
 
89
-        return $domainString . '.' . $result->suffix()->toString();
89
+        return $domainString.'.'.$result->suffix()->toString();
90 90
     }
91 91
 
92 92
     protected function extractSubdomain(string $host = null): string
@@ -119,15 +119,15 @@  discard block
 block discarded – undo
119 119
      */
120 120
     private function getPublicSuffixList(): string
121 121
     {
122
-        return $this->cacheProvider->get('suffix_list', function (ItemInterface $item) {
123
-            $dir = __DIR__ . '/../';
122
+        return $this->cacheProvider->get('suffix_list', function(ItemInterface $item) {
123
+            $dir = __DIR__.'/../';
124 124
             $filesystem = new Filesystem();
125
-            if (!$filesystem->exists($dir . $this->suffixListFilename)) {
125
+            if (!$filesystem->exists($dir.$this->suffixListFilename)) {
126 126
                 throw new \LogicException(
127 127
                     'Public suffix list file not found. Run swp:public-suffix-list:get command'
128 128
                 );
129 129
             }
130
-            return file_get_contents($dir . $this->suffixListFilename);
130
+            return file_get_contents($dir.$this->suffixListFilename);
131 131
         });
132 132
     }
133 133
 }
Please login to merge, or discard this patch.
src/Kernel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,11 +41,11 @@
 block discarded – undo
41 41
 
42 42
     protected function configureRoutes(RoutingConfigurator $routes): void
43 43
     {
44
-        $confDir = $this->getProjectDir() . '/config';
44
+        $confDir = $this->getProjectDir().'/config';
45 45
 
46 46
 
47
-        $routes->import($confDir . '/{routes}/' . $this->environment . '/**/*' . self::CONFIG_EXTS, 'glob');
48
-        $routes->import($confDir . '/{routes}/*' . self::CONFIG_EXTS, 'glob');
49
-        $routes->import($confDir . '/{routes}' . self::CONFIG_EXTS, 'glob');
47
+        $routes->import($confDir.'/{routes}/'.$this->environment.'/**/*'.self::CONFIG_EXTS, 'glob');
48
+        $routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, 'glob');
49
+        $routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, 'glob');
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/PublishDestinationController.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -35,39 +35,39 @@  discard block
 block discarded – undo
35 35
 
36 36
 class PublishDestinationController extends Controller {
37 37
 
38
-  private FormFactoryInterface $formFactory;
39
-  private EventDispatcherInterface $eventDispatcher;
40
-  private CachedTenantContextInterface $cachedTenantContext;
41
-  private RepositoryInterface $publishDestinationRepository;
42
-  private EntityManagerInterface $entityManager;
43
-  private FactoryInterface $publishDestinationFactory;
44
-
45
-  /**
46
-   * @param FormFactoryInterface $formFactory
47
-   * @param EventDispatcherInterface $eventDispatcher
48
-   * @param CachedTenantContextInterface $cachedTenantContext
49
-   * @param RepositoryInterface $publishDestinationRepository
50
-   * @param EntityManagerInterface $entityManager
51
-   * @param FactoryInterface $publishDestinationFactory
52
-   */
53
-  public function __construct(FormFactoryInterface         $formFactory,
54
-                              EventDispatcherInterface     $eventDispatcher,
55
-                              CachedTenantContextInterface $cachedTenantContext,
56
-                              RepositoryInterface          $publishDestinationRepository,
57
-                              EntityManagerInterface       $entityManager,
58
-                              FactoryInterface             $publishDestinationFactory) {
38
+    private FormFactoryInterface $formFactory;
39
+    private EventDispatcherInterface $eventDispatcher;
40
+    private CachedTenantContextInterface $cachedTenantContext;
41
+    private RepositoryInterface $publishDestinationRepository;
42
+    private EntityManagerInterface $entityManager;
43
+    private FactoryInterface $publishDestinationFactory;
44
+
45
+    /**
46
+     * @param FormFactoryInterface $formFactory
47
+     * @param EventDispatcherInterface $eventDispatcher
48
+     * @param CachedTenantContextInterface $cachedTenantContext
49
+     * @param RepositoryInterface $publishDestinationRepository
50
+     * @param EntityManagerInterface $entityManager
51
+     * @param FactoryInterface $publishDestinationFactory
52
+     */
53
+    public function __construct(FormFactoryInterface         $formFactory,
54
+                                EventDispatcherInterface     $eventDispatcher,
55
+                                CachedTenantContextInterface $cachedTenantContext,
56
+                                RepositoryInterface          $publishDestinationRepository,
57
+                                EntityManagerInterface       $entityManager,
58
+                                FactoryInterface             $publishDestinationFactory) {
59 59
     $this->formFactory = $formFactory;
60 60
     $this->eventDispatcher = $eventDispatcher;
61 61
     $this->cachedTenantContext = $cachedTenantContext;
62 62
     $this->publishDestinationRepository = $publishDestinationRepository;
63 63
     $this->entityManager = $entityManager;
64 64
     $this->publishDestinationFactory = $publishDestinationFactory;
65
-  }
65
+    }
66 66
 
67
-  /**
68
-   * @Route("/api/{version}/organization/destinations/", options={"expose"=true}, defaults={"version"="v2"}, methods={"POST"}, name="swp_api_core_publishing_destination_create")
69
-   */
70
-  public function createAction(Request $request): SingleResourceResponse {
67
+    /**
68
+     * @Route("/api/{version}/organization/destinations/", options={"expose"=true}, defaults={"version"="v2"}, methods={"POST"}, name="swp_api_core_publishing_destination_create")
69
+     */
70
+    public function createAction(Request $request): SingleResourceResponse {
71 71
     $tenantContext = $this->cachedTenantContext;
72 72
 
73 73
     $this->eventDispatcher->dispatch(new GenericEvent(), MultiTenancyEvents::TENANTABLE_DISABLE);
@@ -78,26 +78,26 @@  discard block
 block discarded – undo
78 78
     $form->handleRequest($request);
79 79
 
80 80
     if ($form->isSubmitted() && $form->isValid()) {
81
-      $repository = $this->publishDestinationRepository;
82
-      /** @var PublishDestinationInterface $publishDestination */
83
-      $publishDestination = $repository->findOneByTenant($destination->getTenant());
84
-      if (null !== $publishDestination) {
81
+        $repository = $this->publishDestinationRepository;
82
+        /** @var PublishDestinationInterface $publishDestination */
83
+        $publishDestination = $repository->findOneByTenant($destination->getTenant());
84
+        if (null !== $publishDestination) {
85 85
         $repository->remove($publishDestination);
86
-      }
86
+        }
87 87
 
88
-      $currentOrganization->addPublishDestination($destination);
89
-      $this->entityManager->flush();
88
+        $currentOrganization->addPublishDestination($destination);
89
+        $this->entityManager->flush();
90 90
 
91
-      return new SingleResourceResponse($destination, new ResponseContext(200));
91
+        return new SingleResourceResponse($destination, new ResponseContext(200));
92 92
     }
93 93
 
94 94
     return new SingleResourceResponse($form, new ResponseContext(400));
95
-  }
95
+    }
96 96
 
97
-  /**
98
-   * @Route("/api/{version}/organization/destinations/{id}", options={"expose"=true}, defaults={"version"="v2"}, methods={"PATCH"}, name="swp_api_core_publishing_destination_update", requirements={"id"="\d+"})
99
-   */
100
-  public function updateAction(Request $request, $id): SingleResourceResponse {
97
+    /**
98
+     * @Route("/api/{version}/organization/destinations/{id}", options={"expose"=true}, defaults={"version"="v2"}, methods={"PATCH"}, name="swp_api_core_publishing_destination_update", requirements={"id"="\d+"})
99
+     */
100
+    public function updateAction(Request $request, $id): SingleResourceResponse {
101 101
     $objectManager = $this->entityManager;
102 102
     $publishDestination = $this->findOr404($id);
103 103
 
@@ -110,14 +110,14 @@  discard block
 block discarded – undo
110 110
 
111 111
     $form->handleRequest($request);
112 112
     if ($form->isSubmitted() && $form->isValid()) {
113
-      $objectManager->flush();
114
-      $objectManager->refresh($publishDestination);
113
+        $objectManager->flush();
114
+        $objectManager->refresh($publishDestination);
115 115
 
116
-      return new SingleResourceResponse($publishDestination);
116
+        return new SingleResourceResponse($publishDestination);
117 117
     }
118 118
 
119 119
     return new SingleResourceResponse($form, new ResponseContext(400));
120
-  }
120
+    }
121 121
 
122 122
     private function findOr404(int $id)
123 123
     {
Please login to merge, or discard this patch.