Completed
Pull Request — 3.1 (#348)
by Piotr
09:36 queued 07:40
created
Display/PropertyAccessDisplay.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -43,6 +43,10 @@
 block discarded – undo
43 43
         $this->accessor = $this->createPropertyAccessor();
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $path
48
+     * @param string $label
49
+     */
46 50
     public function add($path, ?string $label = null, array $valueFormatters = []): Display
47 51
     {
48 52
         $this->data[] = new Property(
Please login to merge, or discard this patch.
Display/SimpleDisplay.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 
21 21
     /**
22 22
      * {@inheritdoc}
23
+     * @param string $label
23 24
      */
24 25
     public function add($value, ?string $label = null, array $valueFormatters = []): Display
25 26
     {
Please login to merge, or discard this patch.
features/fixtures/project/src/FSi/FixturesBundle/Entity/News.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -104,6 +104,9 @@  discard block
 block discarded – undo
104 104
         return $this->createdAt;
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $creatorEmail
109
+     */
107 110
     public function setCreatorEmail(?string $creatorEmail): void
108 111
     {
109 112
         $this->creatorEmail = $creatorEmail;
@@ -159,6 +162,9 @@  discard block
 block discarded – undo
159 162
         return $this->photoKey;
160 163
     }
161 164
 
165
+    /**
166
+     * @param string|null $photoKey
167
+     */
162 168
     public function setPhotoKey(?string $photoKey): void
163 169
     {
164 170
         $this->photoKey = $photoKey;
Please login to merge, or discard this patch.