Completed
Push — develop ( 911e58...200791 )
by Carsten
13s
created
module/Behat/src/JobContext.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -215,6 +215,9 @@
 block discarded – undo
215 215
 		$this->buildJob($status,$fields->getRowsHash());
216 216
 	}
217 217
 
218
+	/**
219
+	 * @param \Organizations\Entity\Organization $organization
220
+	 */
218 221
 	public function buildJob($status, $definitions,$organization = null)
219 222
     {
220 223
         $normalizedField = [
Please login to merge, or discard this patch.
module/Applications/src/Entity/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -404,7 +404,7 @@
 block discarded – undo
404 404
     /**
405 405
      * {@inheritDoc}
406 406
      * @see \Applications\Entity\ApplicationInterface::getSummary()
407
-     * @return Application
407
+     * @return string
408 408
      */
409 409
     public function getSummary()
410 410
     {
Please login to merge, or discard this patch.
module/Applications/src/Entity/History.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@  discard block
 block discarded – undo
41 41
      */
42 42
     protected $message;
43 43
     
44
+    /**
45
+     * @param StatusInterface|null $status
46
+     */
44 47
     public function __construct($status, $message = '[System]')
45 48
     {
46 49
         if (!$status instanceof StatusInterface) {
@@ -116,7 +119,7 @@  discard block
 block discarded – undo
116 119
     /**
117 120
      * Sets the history message
118 121
      *
119
-     * @param $message
122
+     * @param string $message
120 123
      *
121 124
      * @return $this
122 125
      */
Please login to merge, or discard this patch.
module/Applications/src/Options/ModuleOptions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     /**
122 122
      * Gets the the maximum number of allowed attachments
123 123
      *
124
-     * @return string
124
+     * @return integer
125 125
      */
126 126
     public function getAttachmentsCount()
127 127
     {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * Gets the the maximum size of contact images in bytes
144 144
      *
145
-     * @return string
145
+     * @return integer
146 146
      */
147 147
     public function getContactImageMaxSize()
148 148
     {
Please login to merge, or discard this patch.
Applications/src/Repository/Event/UpdateFilesPermissionsSubscriber.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      * Updates fiile permissions on Flush
36 36
      *
37 37
      * @param OnFlushEventArgs $eventArgs
38
-     * @return boolean
38
+     * @return boolean|null
39 39
      */
40 40
     public function onFlush(OnFlushEventArgs $eventArgs)
41 41
     {
Please login to merge, or discard this patch.
module/Core/src/Collection/IdentityWrapper.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -374,7 +374,6 @@
 block discarded – undo
374 374
     }
375 375
 
376 376
     /**
377
-     * @param mixed $element
378 377
      * @return mixed
379 378
      */
380 379
     protected function getElement($key)
Please login to merge, or discard this patch.
module/Core/src/Controller/Console/AssetsInstallController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -201,6 +201,7 @@
 block discarded – undo
201 201
      * Try to create relative symlink.
202 202
      *
203 203
      * Falling back to absolute symlink and finally hard copy.
204
+     * @param string $targetDir
204 205
      */
205 206
     private function relativeSymlinkWithFallback($originDir, $targetDir)
206 207
     {
Please login to merge, or discard this patch.
module/Core/src/Controller/Console/SubsplitController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -153,6 +153,9 @@
 block discarded – undo
153 153
         $this->runCommand($command);
154 154
     }
155 155
 
156
+    /**
157
+     * @param string $command
158
+     */
156 159
     private function runCommand($command)
157 160
     {
158 161
         if ($this->io->getVerbosity() === OutputInterface::VERBOSITY_DEBUG) {
Please login to merge, or discard this patch.
module/Core/src/Controller/Plugin/CreatePaginator.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,6 @@
 block discarded – undo
128 128
     }
129 129
     
130 130
     /**
131
-     * @param ControllerManager $controllerManager
132 131
      * @return CreatePaginator
133 132
      * @codeCoverageIgnore
134 133
      */
Please login to merge, or discard this patch.