Completed
Push — 1.8 ( 0c8d1a...06ae0d )
by
unknown
37:56
created
src/OroCRM/Bundle/AccountBundle/Entity/Account.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     /**
239 239
      * Returns the account unique id.
240 240
      *
241
-     * @return mixed
241
+     * @return integer
242 242
      */
243 243
     public function getId()
244 244
     {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
     /**
326 326
      * Get contacts collection
327 327
      *
328
-     * @return Collection|Contact[]
328
+     * @return ArrayCollection
329 329
      */
330 330
     public function getContacts()
331 331
     {
Please login to merge, or discard this patch.
OroCRM/Bundle/ActivityContactBundle/Provider/ActivityContactProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Return list of supported activity classes
61 61
      *
62
-     * @return array
62
+     * @return integer[]
63 63
      */
64 64
     public function getSupportedActivityClasses()
65 65
     {
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Check if given entity class is supports
71 71
      *
72
-     * @param $activityClass
72
+     * @param string $activityClass
73 73
      *
74 74
      * @return bool
75 75
      */
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ActivityContactBundle/Provider/CallDirectionProvider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -56,6 +56,7 @@
 block discarded – undo
56 56
 
57 57
     /**
58 58
      * {@inheritdoc}
59
+     * @param Call $activity
59 60
      */
60 61
     public function getDate($activity)
61 62
     {
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Command/CalculateAnalyticsCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     /**
141 141
      * @param int $channelId
142 142
      *
143
-     * @return BufferedQueryResultIterator|Channel[]
143
+     * @return \CallbackFilterIterator
144 144
      */
145 145
     protected function getChannels($channelId = null)
146 146
     {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      * @param Channel $channel
174 174
      * @param array   $ids
175 175
      *
176
-     * @return BufferedQueryResultIterator|CustomerIdentity[]
176
+     * @return BufferedQueryResultIterator
177 177
      */
178 178
     protected function getEntitiesByChannel(Channel $channel, array $ids = [])
179 179
     {
Please login to merge, or discard this patch.
Bundle/AnalyticsBundle/Tests/Unit/Validator/CategoriesValidatorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
     }
271 271
 
272 272
     /**
273
-     * @param array $items
273
+     * @param RFMMetricCategory[] $items
274 274
      *
275 275
      * @return PersistentCollection
276 276
      */
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Validator/CategoriesValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * Validate collection.
20 20
      *
21
-     * @param PersistentCollection|RFMMetricCategory[] $value
21
+     * @param PersistentCollection $value
22 22
      * @param CategoriesConstraint $constraint
23 23
      *
24 24
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Tests/Unit/EventListener/CallListenerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
 
164 164
     /**
165 165
      * @param array $expectedUnsets
166
-     * @param array $parametersData
166
+     * @param array $parameters
167 167
      * @return BuildBefore
168 168
      */
169 169
     protected function createBuildBeforeEvent(array $expectedUnsets, array $parameters)
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CallBundle/Tests/Unit/Form/Handler/CallHandlerTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -357,8 +357,8 @@
 block discarded – undo
357 357
     }
358 358
 
359 359
     /**
360
-     * @param mixed $obj
361
-     * @param mixed $val
360
+     * @param Call $obj
361
+     * @param integer $val
362 362
      */
363 363
     protected function setId($obj, $val)
364 364
     {
Please login to merge, or discard this patch.
src/OroCRM/Bundle/CampaignBundle/Controller/EmailCampaignController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      * )
143 143
      *
144 144
      * @param EmailCampaign $entity
145
-     * @return array
145
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
146 146
      */
147 147
     public function sendAction(EmailCampaign $entity)
148 148
     {
Please login to merge, or discard this patch.