Completed
Push — master ( dd2819...45b95e )
by
unknown
10:20
created
src/OroCRM/Bundle/ActivityContactBundle/Provider/CallDirectionProvider.php 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Util\ClassUtils;
6 6
 use Doctrine\ORM\EntityManager;
7
-
8 7
 use Oro\Bundle\ActivityBundle\EntityConfig\ActivityScope;
9 8
 use Oro\Bundle\EntityExtendBundle\Tools\ExtendHelper;
10 9
 use Oro\Bundle\ActivityBundle\Manager\ActivityManager;
11
-
12 10
 use OroCRM\Bundle\ActivityContactBundle\Direction\DirectionProviderInterface;
13 11
 use OroCRM\Bundle\CallBundle\Entity\Call;
14 12
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/ActivityContactBundle/Provider/EmailDirectionProvider.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,6 +126,7 @@  discard block
 block discarded – undo
126 126
 
127 127
     /**
128 128
      * {@inheritdoc}
129
+     * @param Email $activity
129 130
      */
130 131
     public function getDate($activity)
131 132
     {
@@ -202,7 +203,7 @@  discard block
 block discarded – undo
202 203
     }
203 204
 
204 205
     /**
205
-     * @param object $target
206
+     * @param EmailHolderInterface $target
206 207
      * @return string
207 208
      */
208 209
     protected function getTargetEmail($target)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@  discard block
 block discarded – undo
5 5
 use Doctrine\Common\Util\ClassUtils;
6 6
 use Doctrine\ORM\EntityManager;
7 7
 use Doctrine\Common\Inflector\Inflector;
8
-
9 8
 use Oro\Bundle\ActivityBundle\EntityConfig\ActivityScope;
10 9
 use Oro\Bundle\EmailBundle\Entity\Email;
11 10
 use Oro\Bundle\EmailBundle\Model\EmailHolderInterface;
@@ -13,7 +12,6 @@  discard block
 block discarded – undo
13 12
 use Oro\Bundle\EntityExtendBundle\Tools\ExtendHelper;
14 13
 use Oro\Bundle\EntityConfigBundle\Provider\ConfigProvider;
15 14
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
16
-
17 15
 use OroCRM\Bundle\ActivityContactBundle\Direction\DirectionProviderInterface;
18 16
 use OroCRM\Bundle\MarketingListBundle\Provider\ContactInformationFieldsProvider;
19 17
 
Please login to merge, or discard this patch.
Bundle/ActivityContactBundle/Tools/ActivityContactConfigDumperExtension.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Oro\Bundle\EntityConfigBundle\Provider\ConfigProvider;
8 8
 use Oro\Bundle\EntityExtendBundle\Tools\ExtendConfigDumper;
9 9
 use Oro\Bundle\EntityExtendBundle\Tools\DumperExtensions\AbstractEntityConfigDumperExtension;
10
-
11 10
 use OroCRM\Bundle\ActivityContactBundle\EntityConfig\ActivityScope;
12 11
 use OroCRM\Bundle\ActivityContactBundle\Provider\ActivityContactProvider;
13 12
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Builder/RFMBuilder.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,7 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\AnalyticsBundle\Builder;
4 4
 
5 5
 use Doctrine\Common\Collections\Criteria;
6
-
7 6
 use Symfony\Component\PropertyAccess\PropertyAccess;
8
-
9 7
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
10 8
 use OroCRM\Bundle\AnalyticsBundle\Entity\RFMMetricCategory;
11 9
 use OroCRM\Bundle\AnalyticsBundle\Model\AnalyticsAwareInterface;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Command/CalculateAnalyticsCommand.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Symfony\Component\Console\Input\InputInterface;
9 9
 use Symfony\Component\Console\Input\InputOption;
10 10
 use Symfony\Component\Console\Output\OutputInterface;
11
-
12 11
 use Oro\Bundle\BatchBundle\ORM\Query\BufferedQueryResultIterator;
13 12
 use Oro\Bundle\CronBundle\Command\CronCommandInterface;
14 13
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/EventListener/RFMCategoryListener.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\AnalyticsBundle\EventListener;
4 4
 
5 5
 use Doctrine\ORM\Event\OnFlushEventArgs;
6
-
7 6
 use OroCRM\Bundle\AnalyticsBundle\Entity\RFMMetricCategory;
8 7
 use OroCRM\Bundle\AnalyticsBundle\Model\RFMAwareInterface;
9 8
 use OroCRM\Bundle\AnalyticsBundle\Model\RFMMetricStateManager;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Form/Extension/ChannelTypeExtension.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@
 block discarded – undo
254 254
     }
255 255
 
256 256
     /**
257
-     * @return callable
257
+     * @return \Closure
258 258
      */
259 259
     protected function getValidationGroups()
260 260
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,14 +5,12 @@
 block discarded – undo
5 5
 use Doctrine\Common\Collections\ArrayCollection;
6 6
 use Doctrine\Common\Collections\Criteria;
7 7
 use Doctrine\ORM\PersistentCollection;
8
-
9 8
 use Symfony\Component\Form\AbstractTypeExtension;
10 9
 use Symfony\Component\Form\FormBuilderInterface;
11 10
 use Symfony\Component\Form\FormEvent;
12 11
 use Symfony\Component\Form\FormEvents;
13 12
 use Symfony\Component\Form\FormInterface;
14 13
 use Symfony\Component\OptionsResolver\OptionsResolverInterface;
15
-
16 14
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
17 15
 use OroCRM\Bundle\AnalyticsBundle\Entity\RFMMetricCategory;
18 16
 use OroCRM\Bundle\AnalyticsBundle\Form\Type\RFMCategorySettingsType;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Model/RFMMetricStateManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\AnalyticsBundle\Model;
4 4
 
5 5
 use JMS\JobQueueBundle\Entity\Job;
6
-
7 6
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
8 7
 use OroCRM\Bundle\AnalyticsBundle\Command\CalculateAnalyticsCommand;
9 8
 use OroCRM\Bundle\AnalyticsBundle\Entity\RFMMetricCategory;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/AnalyticsBundle/Model/StateManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\AnalyticsBundle\Model;
4 4
 
5 5
 use JMS\JobQueueBundle\Entity\Job;
6
-
7 6
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
8 7
 use OroCRM\Bundle\AnalyticsBundle\Command\CalculateAnalyticsCommand;
9 8
 
Please login to merge, or discard this patch.