Completed
Push — 1.8 ( b7094f...f1162e )
by
unknown
83:38 queued 61:44
created
Oro/Bundle/BatchBundle/Tests/Unit/ORM/Query/QueryCountCalculatorTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use Doctrine\DBAL\Statement;
11 11
 use Doctrine\DBAL\Types\Type;
12 12
 use Doctrine\ORM\UnitOfWork;
13
-
14 13
 use Oro\Bundle\BatchBundle\ORM\Query\QueryCountCalculator;
15 14
 use Oro\Bundle\EntityBundle\ORM\SqlQuery;
16 15
 
Please login to merge, or discard this patch.
src/Oro/Bundle/BusinessEntitiesBundle/Entity/BaseOrder.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\Mapping as ORM;
6 6
 use Doctrine\Common\Collections\ArrayCollection;
7
-
8 7
 use Oro\Bundle\AddressBundle\Entity\AbstractAddress;
9 8
 use Oro\Bundle\EntityConfigBundle\Metadata\Annotation\ConfigField;
10 9
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -438,7 +438,7 @@
 block discarded – undo
438 438
     }
439 439
 
440 440
     /**
441
-     * @return string
441
+     * @return double
442 442
      */
443 443
     public function getShippingMethod()
444 444
     {
Please login to merge, or discard this patch.
src/Oro/Bundle/CacheBundle/Tests/Unit/Provider/FileCacheTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
     /**
125 125
      * @param  mixed  $obj
126 126
      * @param  string $methodName
127
-     * @param  array  $args
127
+     * @param  string[]  $args
128 128
      * @return mixed
129 129
      */
130 130
     public static function callProtectedMethod($obj, $methodName, array $args)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\CacheBundle\Tests\Unit\Provider;
4 4
 
5 5
 use Symfony\Component\Filesystem\Filesystem;
6
-
7 6
 use Oro\Bundle\CacheBundle\Provider\SyncCacheInterface;
8 7
 
9 8
 class FileCacheTest extends \PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.
Oro/Bundle/CalendarBundle/Controller/Api/Rest/CalendarEventController.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@  discard block
 block discarded – undo
5 5
 use Symfony\Component\Form\Form;
6 6
 use Symfony\Component\HttpFoundation\Response;
7 7
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
8
-
9 8
 use FOS\RestBundle\Controller\Annotations\NamePrefix;
10 9
 use FOS\RestBundle\Controller\Annotations\RouteResource;
11 10
 use FOS\RestBundle\Controller\Annotations\QueryParam;
@@ -13,19 +12,15 @@  discard block
 block discarded – undo
13 12
 use FOS\RestBundle\Controller\Annotations\Post;
14 13
 use FOS\RestBundle\Routing\ClassResourceInterface;
15 14
 use FOS\RestBundle\Util\Codes;
16
-
17 15
 use Nelmio\ApiDocBundle\Annotation\ApiDoc;
18
-
19 16
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
20 17
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
21
-
22 18
 use Oro\Bundle\CalendarBundle\Entity\CalendarEvent;
23 19
 use Oro\Bundle\CalendarBundle\Entity\Repository\CalendarEventRepository;
24 20
 use Oro\Bundle\CalendarBundle\Provider\SystemCalendarConfig;
25 21
 use Oro\Bundle\SoapBundle\Form\Handler\ApiFormHandler;
26 22
 use Oro\Bundle\SoapBundle\Controller\Api\Rest\RestController;
27 23
 use Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager;
28
-use Oro\Bundle\CalendarBundle\Handler\DeleteHandler;
29 24
 use Oro\Bundle\SoapBundle\Request\Parameters\Filter\HttpDateTimeParameterFilter;
30 25
 use Oro\Bundle\SecurityBundle\Exception\ForbiddenException;
31 26
 
Please login to merge, or discard this patch.
Bundle/CalendarBundle/Controller/Api/Soap/CalendarConnectionController.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 Oro\Bundle\CalendarBundle\Controller\Api\Soap;
4 4
 
5 5
 use Symfony\Component\Form\FormInterface;
6
-
7 6
 use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
8
-
9 7
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
10 8
 use Oro\Bundle\SoapBundle\Controller\Api\Soap\SoapController;
11 9
 use Oro\Bundle\SoapBundle\Form\Handler\ApiFormHandler;
Please login to merge, or discard this patch.
src/Oro/Bundle/CalendarBundle/Controller/CalendarController.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,18 +3,14 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\CalendarBundle\Controller;
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6
-
7 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
8 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
9
-
10 8
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
11 9
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
12 10
 use Oro\Bundle\SecurityBundle\SecurityFacade;
13
-
14 11
 use Oro\Bundle\CalendarBundle\Entity\Calendar;
15 12
 use Oro\Bundle\CalendarBundle\Entity\Repository\CalendarRepository;
16 13
 use Oro\Bundle\CalendarBundle\Provider\CalendarDateTimeConfigProvider;
17
-
18 14
 use Oro\Bundle\UserBundle\Entity\User;
19 15
 use Oro\Bundle\OrganizationBundle\Entity\Organization;
20 16
 
Please login to merge, or discard this patch.
src/Oro/Bundle/CalendarBundle/Controller/CalendarEventController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,13 +3,10 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\CalendarBundle\Controller;
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6
-
7 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
8 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
9
-
10 8
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
11 9
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
12
-
13 10
 use Oro\Bundle\CalendarBundle\Entity\CalendarEvent;
14 11
 
15 12
 /**
Please login to merge, or discard this patch.
src/Oro/Bundle/CalendarBundle/Controller/SystemCalendarController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,8 @@
 block discarded – undo
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6 6
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
7 7
 use Symfony\Component\Security\Core\Exception\AccessDeniedException;
8
-
9 8
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
10 9
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
11
-
12 10
 use Oro\Bundle\CalendarBundle\Entity\SystemCalendar;
13 11
 use Oro\Bundle\CalendarBundle\Provider\SystemCalendarConfig;
14 12
 use Oro\Bundle\SecurityBundle\SecurityFacade;
Please login to merge, or discard this patch.
src/Oro/Bundle/CalendarBundle/Controller/SystemCalendarEventController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,8 @@
 block discarded – undo
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6 6
 use Symfony\Component\Security\Core\Exception\AccessDeniedException;
7 7
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
8
-
9 8
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
10 9
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
11
-
12 10
 use Oro\Bundle\CalendarBundle\Entity\SystemCalendar;
13 11
 use Oro\Bundle\CalendarBundle\Entity\CalendarEvent;
14 12
 use Oro\Bundle\CalendarBundle\Provider\SystemCalendarConfig;
Please login to merge, or discard this patch.