Completed
Push — dependabot/composer/symfony/fl... ( c20764 )
by
unknown
19:07
created
src/SWP/Bundle/CoreBundle/Consumer/AnalyticsEventConsumer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -177,6 +177,9 @@
 block discarded – undo
177 177
         return ArticleEventInterface::PAGEVIEW_SOURCE_EXTERNAL;
178 178
     }
179 179
 
180
+    /**
181
+     * @return string
182
+     */
180 183
     private function getFragmentFromUrl(string $url, string $fragment): ?string
181 184
     {
182 185
         $fragments = \parse_url($url);
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Controller/RouteController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -194,6 +194,9 @@
 block discarded – undo
194 194
         return $route;
195 195
     }
196 196
 
197
+    /**
198
+     * @param string $name
199
+     */
197 200
     private function ensureRouteExists($name)
198 201
     {
199 202
         if (null !== $this->get('swp.repository.route')->findOneByName($name)) {
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Command/ThemeGenerateCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      * @param InputInterface  $input
187 187
      * @param OutputInterface $output
188 188
      * @param Tenant          $tenant
189
-     * @param                 $themeDir
189
+     * @param                 string $themeDir
190 190
      * @param                 $themeName
191 191
      */
192 192
     protected function writeConfigFile(InputInterface $input, OutputInterface $output, Tenant $tenant, $themeDir, $themeName)
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 
279 279
     /**
280 280
      * @param Filesystem $filesystem
281
-     * @param $baseDir
281
+     * @param string $baseDir
282 282
      * @param $fileName
283 283
      *
284 284
      * @return string
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/ContentListController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -268,6 +268,9 @@
 block discarded – undo
268 268
         return $list;
269 269
     }
270 270
 
271
+    /**
272
+     * @param null|string $name
273
+     */
271 274
     private function ensureContentListExists($name)
272 275
     {
273 276
         if (null !== $this->get('swp.repository.content_list')->findOneByName($name)) {
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/SlideshowItemController.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -61,6 +61,9 @@  discard block
 block discarded – undo
61 61
         return new ResourcesListResponse($items);
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $id
66
+     */
64 67
     private function findOr404($id): ?SlideshowInterface
65 68
     {
66 69
         if (null === $slideshow = $this->get('swp.repository.slideshow')->findOneById($id)) {
@@ -70,6 +73,9 @@  discard block
 block discarded – undo
70 73
         return $slideshow;
71 74
     }
72 75
 
76
+    /**
77
+     * @param string $id
78
+     */
73 79
     private function findArticleOr404($id)
74 80
     {
75 81
         if (null === $article = $this->get('swp.repository.article')->findOneById($id)) {
Please login to merge, or discard this patch.
src/SWP/Bundle/UserBundle/Controller/ProfileController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -107,6 +107,9 @@
 block discarded – undo
107 107
         return new SingleResourceResponse($form, new ResponseContext(400));
108 108
     }
109 109
 
110
+    /**
111
+     * @param UserInterface $requestedUser
112
+     */
110 113
     private function checkIfCanAccess($requestedUser)
111 114
     {
112 115
         /** @var UserInterface $currentUser */
Please login to merge, or discard this patch.
src/SWP/Bundle/UserBundle/Model/UserInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string $about
32
+     * @return void
32 33
      */
33 34
     public function setAbout(string $about);
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string $firstName
43
+     * @return void
42 44
      */
43 45
     public function setFirstName(string $firstName);
44 46
 
@@ -49,6 +51,7 @@  discard block
 block discarded – undo
49 51
 
50 52
     /**
51 53
      * @param string $lastName
54
+     * @return void
52 55
      */
53 56
     public function setLastName(string $lastName);
54 57
 }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Controller/AuthController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -235,6 +235,9 @@
 block discarded – undo
235 235
         ]);
236 236
     }
237 237
 
238
+    /**
239
+     * @param null|string $token
240
+     */
238 241
     private function generateOrGetApiKey(UserInterface $user, $token)
239 242
     {
240 243
         $apiKey = null;
Please login to merge, or discard this patch.
src/SWP/Component/TemplatesSystem/Gimme/Context/Context.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,6 +75,9 @@  discard block
 block discarded – undo
75 75
      */
76 76
     private $configurationCache = [];
77 77
 
78
+    /**
79
+     * @param string $configsPath
80
+     */
78 81
     public function __construct(EventDispatcherInterface $dispatcher, Cache $metadataCache, $configsPath = null)
79 82
     {
80 83
         $this->metadataCache = $metadataCache;
@@ -312,7 +315,7 @@  discard block
 block discarded – undo
312 315
     }
313 316
 
314 317
     /**
315
-     * @param array $keys
318
+     * @param string[] $keys
316 319
      *
317 320
      * @return string
318 321
      */
@@ -344,7 +347,7 @@  discard block
 block discarded – undo
344 347
     /**
345 348
      * @param string $id
346 349
      *
347
-     * @return null|true
350
+     * @return null|boolean
348 351
      */
349 352
     public function restoreTemporaryUnset($id)
350 353
     {
Please login to merge, or discard this patch.