Completed
Push — develop ( 62f68e...872778 )
by Carsten
13s
created
module/Core/src/Controller/Plugin/SearchForm.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,6 @@
 block discarded – undo
46 46
      *
47 47
      * Proxies to {@link get()}
48 48
      *
49
-     * @param string|array     $elementsFieldset
50
-     * @param null|string $buttonsFieldset
51 49
      *
52 50
      * @return \Core\Form\TextSearchForm
53 51
      */
Please login to merge, or discard this patch.
module/Core/src/Entity/FileEntity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     /**
130 130
      * Gets the name of a file
131 131
      *
132
-     * @return mixed
132
+     * @return string
133 133
      */
134 134
     public function getName()
135 135
     {
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     /**
198 198
      * Gets the uploaded date of a file
199 199
      *
200
-     * @return mixed
200
+     * @return null|\DateTime
201 201
      */
202 202
     public function getDateUploaded()
203 203
     {
Please login to merge, or discard this patch.
module/Core/src/Entity/Hydrator/FileCollectionUploadHydrator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     protected $elementName;
22 22
 
23 23
     /**
24
-     * @param $name
25
-     * @param $strategy
24
+     * @param string $name
25
+     * @param Strategy\FileUploadStrategy $strategy
26 26
      */
27 27
     public function __construct($name, $strategy)
28 28
     {
Please login to merge, or discard this patch.
module/Core/src/Entity/Hydrator/JsonEntityHydrator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
     {
30 30
     }
31 31
 
32
+    /**
33
+     * @param EntityHydrator $hydrator
34
+     */
32 35
     public function injectHydrator($hydrator)
33 36
     {
34 37
         if (empty($hydrator) || !$hydrator instanceof AbstractHydrator) {
Please login to merge, or discard this patch.
module/Core/src/Factory/Form/AbstractCustomizableFieldsetFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      * @param string             $name
118 118
      * @param array              $options
119 119
      *
120
-     * @return \Zend\Form\Fieldset
120
+     * @return \Core\Options\FieldsetCustomizationOptions
121 121
      * @throws \RuntimeException
122 122
      */
123 123
     protected function createFormInstance(ContainerInterface $container, $name, array $options = null)
Please login to merge, or discard this patch.
module/Core/src/Form/Element/FileUpload.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * {@link fileCountValidationCallback()} and
72 72
      * {@link getFileEntity()}
73 73
      *
74
-     * @param \Zend\Form\FormInterface $form
74
+     * @param \Core\Form\Form $form
75 75
      *
76 76
      * @return self
77 77
      */
Please login to merge, or discard this patch.
module/Core/src/Listener/LanguageRouteListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
 
189 189
     /**
190 190
      * @param $response
191
-     * @param $uri
191
+     * @param string $uri
192 192
      *
193 193
      * @return mixed
194 194
      */
Please login to merge, or discard this patch.
module/Core/src/Mail/HTMLTemplateMessage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
 
203 203
     /**
204 204
      *
205
-     * @param $template
205
+     * @param string $template
206 206
      *
207 207
      * @return self
208 208
      */
Please login to merge, or discard this patch.
module/Core/src/Repository/RepositoryService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         return $repository;
53 53
     }
54 54
     
55
+    /**
56
+     * @return string
57
+     */
55 58
     public function createQueryBuilder()
56 59
     {
57 60
         return $this->dm->createQueryBuilder();
Please login to merge, or discard this patch.