Completed
Pull Request — master (#4938)
by Andrey F.
04:03
created
src/Admin/BaseFieldDescription.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -418,6 +418,9 @@  discard block
 block discarded – undo
418 418
         return implode('-', $components);
419 419
     }
420 420
 
421
+    /**
422
+     * @param string $fieldName
423
+     */
421 424
     private function hasCachedFieldGetter($object, $fieldName): bool
422 425
     {
423 426
         return isset(
@@ -425,6 +428,9 @@  discard block
 block discarded – undo
425 428
         );
426 429
     }
427 430
 
431
+    /**
432
+     * @param string $fieldName
433
+     */
428 434
     private function callCachedGetter($object, $fieldName, array $parameters = [])
429 435
     {
430 436
         $getterKey = $this->getFieldGetterKey($object, $fieldName);
@@ -443,6 +449,10 @@  discard block
 block discarded – undo
443 449
         return $object->{$fieldName};
444 450
     }
445 451
 
452
+    /**
453
+     * @param string $fieldName
454
+     * @param string $method
455
+     */
446 456
     private function cacheFieldGetter($object, $fieldName, $method, $getter = null): void
447 457
     {
448 458
         $getterKey = $this->getFieldGetterKey($object, $fieldName);
Please login to merge, or discard this patch.
src/Admin/Pool.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
     }
296 296
 
297 297
     /**
298
-     * @return array
298
+     * @return string[]
299 299
      */
300 300
     public function getAdminServiceIds()
301 301
     {
Please login to merge, or discard this patch.
tests/Admin/PoolTest.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     }
294 294
 
295 295
     /**
296
-     * @return Symfony\Component\DependencyInjection\ContainerInterface - the mock of container interface
296
+     * @return ContainerInterface - the mock of container interface
297 297
      */
298 298
     private function getContainer()
299 299
     {
@@ -307,6 +307,9 @@  discard block
 block discarded – undo
307 307
         return $containerMock;
308 308
     }
309 309
 
310
+    /**
311
+     * @param string $serviceId
312
+     */
310 313
     private function getItemArray($serviceId)
311 314
     {
312 315
         return [
Please login to merge, or discard this patch.
src/Twig/Extension/SonataAdminExtension.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * render a list element from the FieldDescription.
128 128
      *
129
-     * @param mixed $object
129
+     * @param \stdClass $object
130 130
      * @param array $params
131 131
      *
132 132
      * @return string
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     /**
223 223
      * render a view element.
224 224
      *
225
-     * @param mixed $object
225
+     * @param \stdClass $object
226 226
      *
227 227
      * @return string
228 228
      */
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
     /**
360 360
      * Get the identifiers as a string that is safe to use in a url.
361 361
      *
362
-     * @param object $model
362
+     * @param \stdClass $model
363 363
      *
364 364
      * @return string string representation of the id that is safe to use in a url
365 365
      */
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
     }
382 382
 
383 383
     /**
384
-     * @return string|bool
384
+     * @return string|false
385 385
      */
386 386
     public function getXEditableType($type)
387 387
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 use Symfony\Component\Translation\TranslatorInterface;
23 23
 use Twig\Environment;
24 24
 use Twig\Extension\AbstractExtension;
25
-use Twig\Template;
26 25
 use Twig\TemplateWrapper;
27 26
 use Twig\TwigFilter;
28 27
 use Twig\TwigFunction;
Please login to merge, or discard this patch.