Completed
Push — 1.8 ( 8d6730...a2d9e7 )
by
unknown
42:28
created
src/OroCRM/Bundle/MagentoBundle/Entity/Repository/CartRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
      * @param Channel $channel
166 166
      * @param string  $status
167 167
      *
168
-     * @return \Doctrine\ORM\QueryBuilder
168
+     * @return BufferedQueryResultIterator
169 169
      */
170 170
     public function getCartsByChannelIdsIterator(Channel $channel, $status = 'open')
171 171
     {
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      * @param \DateTime $start
219 219
      * @param \DateTime $end
220 220
      * @param AclHelper $aclHelper
221
-     * @return float|null
221
+     * @return integer|null
222 222
      * @throws \Doctrine\ORM\NonUniqueResultException
223 223
      */
224 224
     public function getAbandonRateByPeriod(\DateTime $start, \DateTime $end, AclHelper $aclHelper)
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AccountBundle/Entity/Account.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
     /**
230 230
      * Returns the account unique id.
231 231
      *
232
-     * @return mixed
232
+     * @return integer
233 233
      */
234 234
     public function getId()
235 235
     {
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
     /**
317 317
      * Get contacts collection
318 318
      *
319
-     * @return Collection|Contact[]
319
+     * @return Collection
320 320
      */
321 321
     public function getContacts()
322 322
     {
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ContactBundle/Entity/Contact.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
      *
1013 1013
      * This method could not be named setEmails because of bug CRM-253.
1014 1014
      *
1015
-     * @param Collection|ContactEmail[] $emails
1015
+     * @param ContactEmail[] $emails
1016 1016
      *
1017 1017
      * @return Contact
1018 1018
      */
@@ -1134,7 +1134,7 @@  discard block
 block discarded – undo
1134 1134
      *
1135 1135
      * This method could not be named setPhones because of bug CRM-253.
1136 1136
      *
1137
-     * @param Collection|ContactPhone[] $phones
1137
+     * @param ContactPhone[] $phones
1138 1138
      *
1139 1139
      * @return Contact
1140 1140
      */
Please login to merge, or discard this patch.
src/OroCRM/Bundle/MagentoBundle/Form/Type/CustomerGroupSelectType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     /**
86 86
      * Checks if the form type should be read-only or not
87 87
      *
88
-     * @param array $options
88
+     * @param Options $options
89 89
      *
90 90
      * @return bool
91 91
      */
Please login to merge, or discard this patch.
Bundle/TaskBundle/Migrations/Schema/v1_9/UpdateReminderEmailTemplates.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
     /**
43 43
      * @param LoggerInterface $logger
44 44
      * @param string          $templateName
45
-     * @param string|array    $dateFilterPattern
45
+     * @param string    $dateFilterPattern
46 46
      * @param string          $dateFilterReplacement
47
-     * @param string|array    $calendarRangePattern
47
+     * @param string[]    $calendarRangePattern
48 48
      * @param string          $calendarRangeReplacement
49 49
      *
50 50
      * @throws ConnectionException
Please login to merge, or discard this patch.