Completed
Push — master ( a18731...e2e070 )
by
unknown
99:54 queued 47:45
created
src/OroCRM/Bundle/SalesBundle/Handler/OpportunityApiHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 
21 21
     /**
22 22
      * {@inheritdoc}
23
+     * @param \OroCRM\Bundle\SalesBundle\Entity\Opportunity $entity
23 24
      */
24 25
     public function afterProcess($entity)
25 26
     {
Please login to merge, or discard this patch.
OroCRM/Bundle/SalesBundle/Migrations/Schema/v1_22/AddOpportunityStatus.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     /**
87 87
      * @param Schema $schema
88 88
      * @param ExtendExtension $extendExtension
89
-     * @param array $immutableCodes
89
+     * @param string[] $immutableCodes
90 90
      */
91 91
     public static function addStatusField(Schema $schema, ExtendExtension $extendExtension, array $immutableCodes)
92 92
     {
Please login to merge, or discard this patch.
SalesBundle/Tests/Functional/Fixture/LoadOpportunityStatusBoardFixtures.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,10 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\DataFixtures\AbstractFixture;
6 6
 use Doctrine\Common\Persistence\ObjectManager;
7
-
8
-use Symfony\Component\DependencyInjection\ContainerAwareInterface;
9
-use Symfony\Component\DependencyInjection\ContainerInterface;
10
-
11 7
 use Oro\Bundle\EntityExtendBundle\Tools\ExtendHelper;
12 8
 use Oro\Bundle\OrganizationBundle\Entity\Organization;
13 9
 use OroCRM\Bundle\SalesBundle\Entity\Opportunity;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/SalesBundle/Tests/Unit/Form/Type/OpportunityTypeTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
     }
182 182
 
183 183
     /**
184
-     * @param mixed $data
184
+     * @param Opportunity $data
185 185
      *
186 186
      * @return FormEvent
187 187
      */
Please login to merge, or discard this patch.
OroCRM/Bundle/SalesBundle/Tests/Unit/Handler/OpportunityApiHandlerTest.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -2,11 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace OroCRM\Bundle\SalesBundle\Tests\Unit\Entity;
4 4
 
5
-use Doctrine\ORM\EntityManager;
6
-
7
-use Oro\Bundle\ConfigBundle\Config\ConfigManager;
8
-use Oro\Bundle\EntityExtendBundle\Entity\AbstractEnumValue;
9
-
10 5
 use OroCRM\Bundle\SalesBundle\Entity\Opportunity;
11 6
 use OroCRM\Bundle\SalesBundle\Handler\OpportunityApiHandler;
12 7
 
Please login to merge, or discard this patch.
src/OroCRM/Bundle/SalesBundle/Provider/Opportunity/ForecastProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -336,7 +336,7 @@
 block discarded – undo
336 336
     }
337 337
 
338 338
     /**
339
-     * @param $key
339
+     * @param string $key
340 340
      *
341 341
      * @return mixed
342 342
      */
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,18 +3,14 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\SalesBundle\Provider\Opportunity;
4 4
 
5 5
 use Symfony\Bridge\Doctrine\RegistryInterface;
6
-
7 6
 use Doctrine\ORM\EntityRepository;
8
-use Doctrine\ORM\Query\Expr\Composite;
9 7
 use Doctrine\ORM\Query\Expr\Join;
10 8
 use Doctrine\ORM\QueryBuilder;
11
-
12 9
 use Oro\Bundle\QueryDesignerBundle\QueryDesigner\FilterProcessor;
13 10
 use Oro\Bundle\EntityExtendBundle\Provider\EnumValueProvider;
14 11
 use Oro\Bundle\SecurityBundle\ORM\Walker\AclHelper;
15 12
 use Oro\Bundle\UserBundle\Entity\Repository\UserRepository;
16 13
 use Oro\Component\DoctrineUtils\ORM\QueryUtils;
17
-
18 14
 use OroCRM\Bundle\SalesBundle\Entity\Repository\OpportunityRepository;
19 15
 
20 16
 class ForecastProvider
Please login to merge, or discard this patch.