Completed
Push — takeit-patch-1 ( f33a91 )
by Rafał
21:17
created
src/SWP/Bundle/ContentBundle/Hydrator/ArticleHydrator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             $items = $this->filterTextItems($package->getItems());
92 92
 
93 93
             $map = $items->map(
94
-                function (ItemInterface $item) {
94
+                function(ItemInterface $item) {
95 95
                     return ' '.$item->getDescription();
96 96
                 }
97 97
             );
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $items = $this->filterTextItems($package->getItems());
113 113
 
114
-        $authors = array_filter(array_values(array_map(function (ItemInterface $item) {
114
+        $authors = array_filter(array_values(array_map(function(ItemInterface $item) {
115 115
             $metadata = $item->getMetadata();
116 116
 
117 117
             return $metadata['byline'];
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     private function filterTextItems(Collection $items)
133 133
     {
134 134
         return $items->filter(
135
-            function (ItemInterface $item) {
135
+            function(ItemInterface $item) {
136 136
                 $this->ensureTypeIsAllowed($item->getType());
137 137
 
138 138
                 return ItemInterface::TYPE_TEXT === $item->getType();
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      */
148 148
     private function populateBody(PackageInterface $package)
149 149
     {
150
-        return $package->getBody().' '.implode('', array_map(function (ItemInterface $item) {
150
+        return $package->getBody().' '.implode('', array_map(function(ItemInterface $item) {
151 151
             $this->ensureTypeIsAllowed($item->getType());
152 152
 
153 153
             return $item->getBody();
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Factory/ORM/MediaFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
         }
110 110
 
111 111
         $originalRendition = $item->getRenditions()->filter(
112
-            function (RenditionInterface $rendition) {
112
+            function(RenditionInterface $rendition) {
113 113
                 return 'original' === $rendition->getName();
114 114
             }
115 115
         )->first();
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Matcher/RulesMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
 
139 139
         $ids = array_column($rules['tenants'], 'tenant');
140 140
         $ids = array_unique($ids);
141
-        $tenants = array_filter($rules['tenants'], function ($key, $value) use ($ids) {
141
+        $tenants = array_filter($rules['tenants'], function($key, $value) use ($ids) {
142 142
             return \in_array($value, \array_keys($ids));
143 143
         }, ARRAY_FILTER_USE_BOTH);
144 144
 
Please login to merge, or discard this patch.
src/SWP/Component/Bridge/Model/AuthorsAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function getAuthorsNames(): array
55 55
     {
56
-        return array_map(function ($author) {
56
+        return array_map(function($author) {
57 57
             return $author->getName();
58 58
         }, $this->authors->toArray());
59 59
     }
Please login to merge, or discard this patch.
src/SWP/Component/Bridge/Model/BaseContent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
      */
357 357
     public function getServicesNames(): array
358 358
     {
359
-        return array_map(function ($service) {
359
+        return array_map(function($service) {
360 360
             if (\is_array($service) && \array_key_exists('name', $service)) {
361 361
                 return $service['name'];
362 362
             }
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
      */
371 371
     public function getServicesCodes(): array
372 372
     {
373
-        return array_map(function ($service) {
373
+        return array_map(function($service) {
374 374
             if (\is_array($service) && \array_key_exists('code', $service)) {
375 375
                 return $service['code'];
376 376
             }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Service/ThemeService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * @param TenantContextInterface             $tenantContext
77 77
      * @param ReloadableThemeRepositoryInterface $themeRepository
78 78
      * @param TenantAwareThemeContextInterface   $themeContext
79
-     * @param TenantRepositoryInterface          $tenantRepositorys
79
+     * @param TenantRepositoryInterface          $tenantRepository
80 80
      */
81 81
     public function __construct(
82 82
         ThemeInstallerInterface $themeInstaller,
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/WebSocket/Topic/PackageTopic.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
     public function registerPeriodicTimer(Topic $topic)
66 66
     {
67 67
         $n = 1;
68
-        $this->periodicTimer->addPeriodicTimer($this, 'ping', 5, function () use ($topic, &$n) {
68
+        $this->periodicTimer->addPeriodicTimer($this, 'ping', 5, function() use ($topic, &$n) {
69 69
             $topic->broadcast(['ping' => $n]);
70 70
 
71 71
             ++$n;
Please login to merge, or discard this patch.
src/SWP/Bundle/FixturesBundle/AbstractFixture.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @param $paths
54
+     * @param string[] $paths
55 55
      *
56 56
      * @return mixed
57 57
      */
@@ -100,6 +100,11 @@  discard block
 block discarded – undo
100 100
         return $this->getTenantPrefix(self::DEFAULT_TENANT_DOMAIN).'/'.ltrim($id, '/');
101 101
     }
102 102
 
103
+    /**
104
+     * @param string $id
105
+     *
106
+     * @return null|\SWP\Bundle\ContentBundle\Model\RouteInterface
107
+     */
103 108
     public function getRouteByName($id)
104 109
     {
105 110
         return $this->container->get('swp.provider.route')->getRouteByName($id);
@@ -108,7 +113,7 @@  discard block
 block discarded – undo
108 113
     /**
109 114
      * Gets current tenant's prefix.
110 115
      *
111
-     * @param string $subdomain
116
+     * @param string $domain
112 117
      *
113 118
      * @return string
114 119
      */
Please login to merge, or discard this patch.