Completed
Pull Request — 3.x (#5638)
by Mathieu
03:17
created
src/Twig/GlobalVariables.php 1 patch
Doc Comments   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param ContainerInterface|Pool $adminPool
45
+     * @param string $mosaicBackground
45 46
      */
46 47
     public function __construct($adminPool, ?string $mosaicBackground = null)
47 48
     {
@@ -78,7 +79,7 @@  discard block
 block discarded – undo
78 79
     /**
79 80
      * @param string $code
80 81
      * @param string $action
81
-     * @param array  $parameters
82
+     * @param string[]  $parameters
82 83
      * @param int    $absolute
83 84
      *
84 85
      * @return string
@@ -93,8 +94,8 @@  discard block
 block discarded – undo
93 94
     /**
94 95
      * @param string $code
95 96
      * @param string $action
96
-     * @param mixed  $object
97
-     * @param array  $parameters
97
+     * @param string  $object
98
+     * @param string[]  $parameters
98 99
      * @param int    $absolute
99 100
      *
100 101
      * @return string
@@ -111,6 +112,10 @@  discard block
 block discarded – undo
111 112
         return $this->mosaicBackground;
112 113
     }
113 114
 
115
+    /**
116
+     * @param string $code
117
+     * @param string $action
118
+     */
114 119
     private function getCodeAction($code, $action): array
115 120
     {
116 121
         if ($pipe = strpos($code, '|')) {
Please login to merge, or discard this patch.
src/Object/Metadata.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -47,6 +47,8 @@
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * @param array<string, mixed> $options
50
+     * @param string $description
51
+     * @param string $domain
50 52
      */
51 53
     public function __construct(
52 54
         string $title,
Please login to merge, or discard this patch.
src/Event/ConfigureEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @return mixed
66
+     * @return string
67 67
      */
68 68
     public function getType()
69 69
     {
Please login to merge, or discard this patch.
src/Event/PersistenceEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @return mixed
66
+     * @return string
67 67
      */
68 68
     public function getType()
69 69
     {
Please login to merge, or discard this patch.
src/Show/ShowMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param mixed $name
42
-     * @param mixed $type
42
+     * @param null|string $type
43 43
      *
44 44
      * @throws \RuntimeException
45 45
      *
Please login to merge, or discard this patch.
tests/Datagrid/DatagridMapperTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -292,6 +292,10 @@
 block discarded – undo
292 292
         $this->assertTrue($this->datagridMapper->has('baz'));
293 293
     }
294 294
 
295
+    /**
296
+     * @param string $name
297
+     * @param string $label
298
+     */
295 299
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
296 300
     {
297 301
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.
tests/Datagrid/ListMapperTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -286,6 +286,10 @@
 block discarded – undo
286 286
         $this->assertTrue($this->listMapper->has('baz'));
287 287
     }
288 288
 
289
+    /**
290
+     * @param string $name
291
+     * @param string $label
292
+     */
289 293
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
290 294
     {
291 295
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.
tests/Show/ShowMapperTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -501,6 +501,10 @@
 block discarded – undo
501 501
         $this->admin->setLabelTranslatorStrategy(new NoopLabelTranslatorStrategy());
502 502
     }
503 503
 
504
+    /**
505
+     * @param string $name
506
+     * @param string $label
507
+     */
504 508
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
505 509
     {
506 510
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.
tests/Menu/Integration/BaseMenuTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
         $this->environment = new Environment($loader, ['strict_variables' => true]);
44 44
     }
45 45
 
46
+    /**
47
+     * @return string
48
+     */
46 49
     abstract protected function getTemplate();
47 50
 
48 51
     protected function getTranslator()
Please login to merge, or discard this patch.