Completed
Push — swp-2216-mim ( f94f7a...bd5d6f )
by
unknown
48s
created
src/SWP/Bundle/CoreBundle/Controller/TenantController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -169,10 +169,10 @@
 block discarded – undo
169 169
       $settingsManager = $this->settingsManager;
170 170
 
171 171
       if (array_key_exists('fbiaEnabled', $formData)) {
172
-        $settingsManager->set('fbia_enabled', (bool)$formData['fbiaEnabled'], ScopeContextInterface::SCOPE_TENANT, $tenant);
172
+        $settingsManager->set('fbia_enabled', (bool) $formData['fbiaEnabled'], ScopeContextInterface::SCOPE_TENANT, $tenant);
173 173
       }
174 174
       if (array_key_exists('paywallEnabled', $formData)) {
175
-        $settingsManager->set('paywall_enabled', (bool)$formData['paywallEnabled'], ScopeContextInterface::SCOPE_TENANT, $tenant);
175
+        $settingsManager->set('paywall_enabled', (bool) $formData['paywallEnabled'], ScopeContextInterface::SCOPE_TENANT, $tenant);
176 176
       }
177 177
       if (array_key_exists('defaultLanguage', $formData)) {
178 178
         $settingsManager->set('default_language', $formData['defaultLanguage'], ScopeContextInterface::SCOPE_TENANT, $tenant);
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/ArticleCommentsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
         throw new NotFoundHttpException('Article was not found');
83 83
       }
84 84
 
85
-      $article->setCommentsCount((int)$data['commentsCount']);
85
+      $article->setCommentsCount((int) $data['commentsCount']);
86 86
       $article->cancelTimestampable();
87 87
       $repository->flush();
88 88
 
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/PackagePreviewController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
     $route = $this->findRouteOr404($routeId);
124 124
 
125 125
     /** @var string $content */
126
-    $content = (string)$request->getContent();
126
+    $content = (string) $request->getContent();
127 127
     $dispatcher = $this->eventDispatcher;
128 128
     $package = $this->dataTransformer->transform($content);
129 129
     $dispatcher->dispatch(new GenericEvent($package), Events::SWP_VALIDATION);
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/ThemesController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,8 +83,8 @@  discard block
 block discarded – undo
83 83
     $tenantCode = $tenant->getCode();
84 84
     $themes = array_filter(
85 85
         $themeRepository->findAll(),
86
-        static function ($element) use (&$tenantCode) {
87
-          if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR . $tenantCode)) {
86
+        static function($element) use (&$tenantCode) {
87
+          if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) {
88 88
             return true;
89 89
           }
90 90
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
       } catch (\Exception $e) {
113 113
         return new SingleResourceResponse(['message' => $e->getMessage()], new ResponseContext(400));
114 114
       }
115
-      $themeConfig = json_decode(file_get_contents($themePath . DIRECTORY_SEPARATOR . 'theme.json'), true);
115
+      $themeConfig = json_decode(file_get_contents($themePath.DIRECTORY_SEPARATOR.'theme.json'), true);
116 116
 
117 117
       return new SingleResourceResponse($themeConfig, new ResponseContext(201));
118 118
     }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/ThemeLogoController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
    */
51 51
   public function getLogoAction(string $id) {
52 52
     $cacheKey = md5(serialize(['upload', $id]));
53
-    return $this->cacheInterface->get($cacheKey, function (CacheItemInterface $item, &$save) use ($id) {
53
+    return $this->cacheInterface->get($cacheKey, function(CacheItemInterface $item, &$save) use ($id) {
54 54
       $item->expiresAfter(63072000);
55 55
 
56 56
       $fileSystem = $this->filesystem;
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Resolver/ArticleResolver.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -42,25 +42,25 @@
 block discarded – undo
42 42
     public function resolve(string $url): ?ArticleInterface
43 43
     {
44 44
         $collectionRouteCacheKey = md5('route_'.$url);
45
-        return $this->cacheProvider->get($collectionRouteCacheKey, function (ItemInterface $item, &$save) use ($url) {
45
+        return $this->cacheProvider->get($collectionRouteCacheKey, function(ItemInterface $item, &$save) use ($url) {
46 46
           try {
47 47
             $route = $this->matcher->match($this->getFragmentFromUrl($url, 'path'));
48
-          } catch(ResourceNotFoundException $e) {
48
+          } catch (ResourceNotFoundException $e) {
49 49
             $save = false;
50 50
             return null;
51 51
           }
52
-          if(!isset($route['_article_meta'])) {
52
+          if (!isset($route['_article_meta'])) {
53 53
             $save = false;
54 54
             return null;
55 55
           }
56 56
 
57
-          if(!($route['_article_meta'] instanceof Meta)) {
57
+          if (!($route['_article_meta'] instanceof Meta)) {
58 58
             $save = false;
59 59
             return null;
60 60
           }
61 61
 
62 62
           $values = $route['_article_meta']->getValues();
63
-          if(!($values instanceof ArticleInterface)) {
63
+          if (!($values instanceof ArticleInterface)) {
64 64
             $save = false;
65 65
             return null;
66 66
           }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/MessageHandler/AbstractContentPushHandler.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
         if (null !== $existingPackage) {
126 126
             $existingPackage = $this->packageHydrator->hydrate($package, $existingPackage);
127 127
 
128
-            $this->eventDispatcher->dispatch( new GenericEvent($existingPackage, ['eventName' => Events::PACKAGE_PRE_UPDATE]), Events::PACKAGE_PRE_UPDATE);
128
+            $this->eventDispatcher->dispatch(new GenericEvent($existingPackage, ['eventName' => Events::PACKAGE_PRE_UPDATE]), Events::PACKAGE_PRE_UPDATE);
129 129
             $this->packageObjectManager->flush();
130
-            $this->eventDispatcher->dispatch( new GenericEvent($existingPackage, ['eventName' => Events::PACKAGE_POST_UPDATE]), Events::PACKAGE_POST_UPDATE);
131
-            $this->eventDispatcher->dispatch( new GenericEvent($existingPackage, ['eventName' => Events::PACKAGE_PROCESSED]), Events::PACKAGE_PROCESSED);
130
+            $this->eventDispatcher->dispatch(new GenericEvent($existingPackage, ['eventName' => Events::PACKAGE_POST_UPDATE]), Events::PACKAGE_POST_UPDATE);
131
+            $this->eventDispatcher->dispatch(new GenericEvent($existingPackage, ['eventName' => Events::PACKAGE_PROCESSED]), Events::PACKAGE_PROCESSED);
132 132
             $this->packageObjectManager->flush();
133 133
 
134 134
             $this->reset();
@@ -137,10 +137,10 @@  discard block
 block discarded – undo
137 137
             return;
138 138
         }
139 139
 
140
-        $this->eventDispatcher->dispatch( new GenericEvent($package, ['eventName' => Events::PACKAGE_PRE_CREATE]), Events::PACKAGE_PRE_CREATE);
140
+        $this->eventDispatcher->dispatch(new GenericEvent($package, ['eventName' => Events::PACKAGE_PRE_CREATE]), Events::PACKAGE_PRE_CREATE);
141 141
         $this->packageRepository->add($package);
142
-        $this->eventDispatcher->dispatch( new GenericEvent($package, ['eventName' => Events::PACKAGE_POST_CREATE]), Events::PACKAGE_POST_CREATE);
143
-        $this->eventDispatcher->dispatch( new GenericEvent($package, ['eventName' => Events::PACKAGE_PROCESSED]), Events::PACKAGE_PROCESSED);
142
+        $this->eventDispatcher->dispatch(new GenericEvent($package, ['eventName' => Events::PACKAGE_POST_CREATE]), Events::PACKAGE_POST_CREATE);
143
+        $this->eventDispatcher->dispatch(new GenericEvent($package, ['eventName' => Events::PACKAGE_PROCESSED]), Events::PACKAGE_PROCESSED);
144 144
         $this->packageObjectManager->flush();
145 145
 
146 146
         $this->logger->info(sprintf('Package %s was created', $package->getGuid()));
Please login to merge, or discard this patch.
CoreBundle/Rule/Applicator/PublishArticleToAppleNewsRuleApplicator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 
53 53
         if ($isPublishedToAppleNews = (bool) $configuration[$this->supportedKeys[0]]) {
54 54
             $subject->setPublishedToAppleNews($isPublishedToAppleNews);
55
-            $this->eventDispatcher->dispatch( new ArticleEvent($subject, null, ArticleEvents::PUBLISH), ArticleEvents::PUBLISH);
55
+            $this->eventDispatcher->dispatch(new ArticleEvent($subject, null, ArticleEvents::PUBLISH), ArticleEvents::PUBLISH);
56 56
 
57 57
             $this->logger->info(sprintf(
58 58
                 'Configuration: "%s" for "%s" rule has been applied!',
Please login to merge, or discard this patch.
Bundle/CoreBundle/Rule/Applicator/PublishArticleToFBIARuleApplicator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
         if ($isPublishedFBIA = (bool) $configuration['isPublishedFbia']) {
62 62
             $subject->setPublishedFBIA($isPublishedFBIA);
63
-            $this->eventDispatcher->dispatch( new ArticleEvent($subject, null, ArticleEvents::PUBLISH), ArticleEvents::PUBLISH);
63
+            $this->eventDispatcher->dispatch(new ArticleEvent($subject, null, ArticleEvents::PUBLISH), ArticleEvents::PUBLISH);
64 64
 
65 65
             $this->logger->info(sprintf(
66 66
                 'Configuration: "%s" for "%s" rule has been applied!',
Please login to merge, or discard this patch.