Completed
Push — master ( 8cca00...50a95d )
by
unknown
06:53
created
Provider/AbstractProvider.php 1 patch
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * @param Media $media
58
-     * @param $providerReferenceUpdated
58
+     * @param boolean $providerReferenceUpdated
59 59
      */
60 60
     public function update(Media $media, $providerReferenceUpdated)
61 61
     {
@@ -230,6 +230,9 @@  discard block
 block discarded – undo
230 230
         $media->setImageMetaData($this->getFileMetaData($file));
231 231
     }
232 232
 
233
+    /**
234
+     * @param boolean $required
235
+     */
233 236
     protected function doAddFileField(FormMapper $formMapper, $name, $label, $required, $constraints = [])
234 237
     {
235 238
         if ($required) {
@@ -268,8 +271,8 @@  discard block
 block discarded – undo
268 271
 
269 272
     /**
270 273
      * @param FormMapper $formMapper
271
-     * @param $name
272
-     * @param $label
274
+     * @param string $name
275
+     * @param string $label
273 276
      * @param array $options
274 277
      */
275 278
     public function addRequiredImageField(FormMapper $formMapper, $name, $label, $options = [])
@@ -295,7 +298,7 @@  discard block
 block discarded – undo
295 298
 
296 299
     /**
297 300
      * @param UploadedFile $file
298
-     * @param $filename
301
+     * @param string $filename
299 302
      * @throws \Exception
300 303
      */
301 304
     protected function writeToFilesystem(UploadedFile $file, $filename)
Please login to merge, or discard this patch.