Completed
Push — master ( dd2819...45b95e )
by
unknown
10:20
created
src/OroCRM/Bundle/TaskBundle/Controller/Api/Soap/TaskController.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\TaskBundle\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\Entity\Manager\ApiEntityManager;
11 9
 use Oro\Bundle\SoapBundle\Controller\Api\Soap\SoapController;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Controller/TaskController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,12 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
7
-
8 7
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
9
-
10 8
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
11 9
 use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
12
-
13 10
 use Oro\Bundle\UserBundle\Entity\User;
14 11
 use OroCRM\Bundle\TaskBundle\Entity\Task;
15 12
 use OroCRM\Bundle\TaskBundle\Form\Type\TaskType;
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Entity/Repository/TaskRepository.php 1 patch
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\EntityRepository;
6 6
 use Doctrine\ORM\QueryBuilder;
7
-
8 7
 use OroCRM\Bundle\TaskBundle\Entity\Task;
9 8
 
10 9
 class TaskRepository extends EntityRepository
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Entity/Task.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@
 block discarded – undo
322 322
     }
323 323
 
324 324
     /**
325
-     * @return mixed|null
325
+     * @return integer|null
326 326
      */
327 327
     public function getOwnerId()
328 328
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -5,18 +5,15 @@
 block discarded – undo
5 5
 use Doctrine\Common\Collections\Collection;
6 6
 use Doctrine\Common\Collections\ArrayCollection;
7 7
 use Doctrine\ORM\Mapping as ORM;
8
-
9 8
 use Oro\Bundle\EntityBundle\EntityProperty\DatesAwareInterface;
10 9
 use Oro\Bundle\EntityConfigBundle\Metadata\Annotation\Config;
11 10
 use Oro\Bundle\EntityConfigBundle\Metadata\Annotation\ConfigField;
12
-
13 11
 use Oro\Bundle\OrganizationBundle\Entity\Organization;
14 12
 use Oro\Bundle\ReminderBundle\Entity\RemindableInterface;
15 13
 use Oro\Bundle\ReminderBundle\Model\ReminderData;
16 14
 use Oro\Bundle\UserBundle\Entity\User;
17 15
 use Oro\Bundle\WorkflowBundle\Entity\WorkflowItem;
18 16
 use Oro\Bundle\WorkflowBundle\Entity\WorkflowStep;
19
-
20 17
 use OroCRM\Bundle\TaskBundle\Model\ExtendTask;
21 18
 
22 19
 /**
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Entity/TaskSoap.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\TaskBundle\Entity;
4 4
 
5 5
 use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
6
-
7 6
 use Oro\Bundle\SoapBundle\Entity\SoapEntityInterface;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Form/Handler/TaskApiHandler.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\TaskBundle\Form\Handler;
4 4
 
5 5
 use Doctrine\Common\Persistence\ObjectManager;
6
-
7 6
 use Symfony\Component\Form\FormInterface;
8 7
 use Symfony\Component\HttpFoundation\Request;
9
-
10 8
 use OroCRM\Bundle\TaskBundle\Entity\Task;
11 9
 
12 10
 class TaskApiHandler
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Form/Handler/TaskHandler.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -5,12 +5,9 @@
 block discarded – undo
5 5
 use Oro\Bundle\FormBundle\Utils\FormUtils;
6 6
 use Symfony\Component\Form\FormInterface;
7 7
 use Symfony\Component\HttpFoundation\Request;
8
-
9 8
 use Doctrine\Common\Persistence\ObjectManager;
10
-
11 9
 use Oro\Bundle\ActivityBundle\Manager\ActivityManager;
12 10
 use Oro\Bundle\EntityBundle\Tools\EntityRoutingHelper;
13
-
14 11
 use OroCRM\Bundle\TaskBundle\Entity\Task;
15 12
 
16 13
 class TaskHandler
Please login to merge, or discard this patch.
src/OroCRM/Bundle/TaskBundle/Migrations/Schema/v1_2/OroCRMTaskBundle.php 1 patch
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\DBAL\Schema\Schema;
6 6
 use Doctrine\DBAL\Schema\Table;
7
-
8 7
 use Oro\Bundle\ActivityBundle\EntityConfig\ActivityScope;
9 8
 use Oro\Bundle\EntityExtendBundle\Migration\ExtendOptionsManager;
10 9
 use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtension;
Please login to merge, or discard this patch.
Tests/Functional/Controller/Api/Rest/DataFixtures/LoadTaskData.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\TaskBundle\Tests\Functional\Controller\Api\Rest\DataFixtures;
4 4
 
5 5
 use OroCRM\Bundle\TaskBundle\Entity\Task;
6
-
7 6
 use Doctrine\Common\DataFixtures\AbstractFixture;
8 7
 use Doctrine\Common\Persistence\ObjectManager;
9
-
10 8
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
11 9
 use Symfony\Component\DependencyInjection\ContainerInterface;
12 10
 use Symfony\Component\Validator\Constraints\DateTime;
Please login to merge, or discard this patch.