Completed
Push — 1.10 ( 93e51c...7f32fb )
by
unknown
11:06
created
src/OroCRM/Bundle/ChannelBundle/Form/Type/ChannelSelectType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Symfony\Component\Form\AbstractType;
6 6
 use Symfony\Component\OptionsResolver\OptionsResolverInterface;
7 7
 use Symfony\Component\OptionsResolver\Options;
8
-
9 8
 use OroCRM\Bundle\ChannelBundle\Provider\ChannelsByEntitiesProvider;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.
Bundle/ChannelBundle/Provider/Lifetime/AverageLifetimeWidgetProvider.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\ChannelBundle\Provider\Lifetime;
4 4
 
5 5
 use Doctrine\Common\Persistence\ManagerRegistry;
6
-
7 6
 use Oro\Bundle\DashboardBundle\Filter\DateFilterProcessor;
8 7
 use Oro\Bundle\DashboardBundle\Provider\Converters\FilterDateRangeConverter;
9 8
 use Oro\Bundle\LocaleBundle\Model\LocaleSettings;
Please login to merge, or discard this patch.
Tests/Unit/EventListener/ChangeIntegrationStatusListenerTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,9 +6,7 @@
 block discarded – undo
6 6
 use OroCRM\Bundle\ChannelBundle\Event\ChannelChangeStatusEvent;
7 7
 use OroCRM\Bundle\ChannelBundle\EventListener\ChangeIntegrationStatusListener;
8 8
 use Symfony\Bridge\Doctrine\RegistryInterface;
9
-
10 9
 use Oro\Bundle\IntegrationBundle\Entity\Channel as Integration;
11
-
12 10
 use OroCRM\Bundle\ChannelBundle\Entity\Channel;
13 11
 
14 12
 class ChangeIntegrationStatusListenerTest extends \PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.
Tests/Unit/EventListener/UpdateIntegrationConnectorsListenerTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,7 @@
 block discarded – undo
5 5
 use Doctrine\ORM\EntityManager;
6 6
 use OroCRM\Bundle\ChannelBundle\EventListener\UpdateIntegrationConnectorsListener;
7 7
 use Symfony\Bridge\Doctrine\RegistryInterface;
8
-
9 8
 use Oro\Bundle\IntegrationBundle\Entity\Channel as Integration;
10
-
11 9
 use OroCRM\Bundle\ChannelBundle\Provider\SettingsProvider;
12 10
 use OroCRM\Bundle\ChannelBundle\Event\ChannelSaveEvent;
13 11
 use OroCRM\Bundle\ChannelBundle\Entity\Channel;
Please login to merge, or discard this patch.
ChannelBundle/Tests/Unit/Form/Extension/IntegrationTypeExtensionTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,9 @@
 block discarded – undo
5 5
 use OroCRM\Bundle\ChannelBundle\Form\Extension\IntegrationTypeExtension;
6 6
 use OroCRM\Bundle\ChannelBundle\Provider\SettingsProvider;
7 7
 use OroCRM\Bundle\ChannelBundle\Tests\Unit\Stubs\Form\IntegrationFormTypeStub;
8
-
9 8
 use Symfony\Component\Form\ChoiceList\View\ChoiceView;
10 9
 use Symfony\Component\Form\PreloadedExtension;
11 10
 use Symfony\Component\Form\Test\FormIntegrationTestCase;
12
-
13 11
 use Oro\Bundle\IntegrationBundle\Entity\Channel as Integration;
14 12
 
15 13
 class IntegrationTypeExtensionTest extends FormIntegrationTestCase
Please login to merge, or discard this patch.
ChannelBundle/Tests/Unit/Form/Extension/SingleChannelModeExtensionTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Symfony\Component\Form\FormEvent;
6 6
 use Symfony\Component\Form\FormEvents;
7 7
 use Symfony\Component\Form\FormView;
8
-
9 8
 use OroCRM\Bundle\ChannelBundle\Entity\Channel;
10 9
 use OroCRM\Bundle\ChannelBundle\Form\Type\ChannelSelectType;
11 10
 use OroCRM\Bundle\ChannelBundle\Form\Extension\SingleChannelModeExtension;
Please login to merge, or discard this patch.
OroCRM/Bundle/ChannelBundle/Tests/Unit/Form/Type/ChannelSelectTypeTest.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,17 +4,13 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Annotations\AnnotationReader;
6 6
 use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
7
-
8 7
 use Genemu\Bundle\FormBundle\Form\JQuery\Type\Select2Type;
9
-
10 8
 use Symfony\Component\Form\Forms;
11 9
 use Symfony\Component\Form\FormFactory;
12 10
 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
13 11
 use Symfony\Component\Form\PreloadedExtension;
14
-
15 12
 use OroCRM\Bundle\ChannelBundle\Form\Type\ChannelSelectType;
16 13
 use OroCRM\Bundle\ChannelBundle\Provider\ChannelsByEntitiesProvider;
17
-
18 14
 use Oro\Bundle\TestFrameworkBundle\Test\Doctrine\ORM\OrmTestCase;
19 15
 
20 16
 class ChannelSelectTypeTest extends OrmTestCase
Please login to merge, or discard this patch.
Bundle/ChannelBundle/Tests/Unit/Provider/ChannelsByEntitiesProviderTest.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\ChannelBundle\Tests\Unit\Provider;
4 4
 
5 5
 use Oro\Bundle\SecurityBundle\ORM\Walker\AclHelper;
6
-
7 6
 use OroCRM\Bundle\ChannelBundle\Entity\Channel;
8 7
 use OroCRM\Bundle\ChannelBundle\Entity\Repository\ChannelRepository;
9 8
 use OroCRM\Bundle\ChannelBundle\Provider\ChannelsByEntitiesProvider;
Please login to merge, or discard this patch.
Tests/Unit/Provider/Lifetime/AverageLifetimeWidgetProviderTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,9 @@
 block discarded – undo
3 3
 namespace OroCRM\Bundle\ChannelBundle\Tests\Unit\Provider\Lifetime;
4 4
 
5 5
 use Doctrine\Common\Persistence\ManagerRegistry;
6
-
7 6
 use Oro\Bundle\DashboardBundle\Filter\DateFilterProcessor;
8 7
 use Oro\Bundle\LocaleBundle\Model\LocaleSettings;
9 8
 use Oro\Bundle\SecurityBundle\ORM\Walker\AclHelper;
10
-
11 9
 use OroCRM\Bundle\ChannelBundle\Provider\Lifetime\AverageLifetimeWidgetProvider;
12 10
 
13 11
 class AverageLifetimeWidgetProviderTest extends \PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.