Completed
Push — 1.8 ( 79b91c...110b8e )
by
unknown
85:39 queued 52:15
created
src/Oro/Bundle/ReminderBundle/Entity/Reminder.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -388,7 +388,7 @@
 block discarded – undo
388 388
     /**
389 389
      * Get related entity class name
390 390
      *
391
-     * @return string
391
+     * @return integer
392 392
      */
393 393
     public function getRelatedEntityClassName()
394 394
     {
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\Component\PropertyAccess\Tests\Unit;
4 4
 
5 5
 use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException;
6
-
7 6
 use Oro\Component\PropertyAccess\PropertyAccessor;
8 7
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClass;
9 8
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClassMagicCall;
Please login to merge, or discard this patch.
src/Oro/Bundle/RequireJSBundle/Provider/Config.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     /**
44 44
      * @param ContainerInterface $container
45 45
      * @param EngineInterface $templating
46
-     * @param $template
46
+     * @param string $template
47 47
      */
48 48
     public function __construct(ContainerInterface $container, EngineInterface $templating, $template)
49 49
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\EventManager;
6 6
 use Doctrine\DBAL\Driver\Connection;
7
-
8 7
 use Symfony\Component\Filesystem\Filesystem;
9
-
10 8
 use Oro\Component\TestUtils\ORM\Mocks\DriverMock;
11 9
 use Oro\Component\TestUtils\ORM\Mocks\EntityManagerMock;
12 10
 
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/Engine/AbstractEngine.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      *
80 80
      * @param Query $query
81 81
      *
82
-     * @return array
82
+     * @return Query
83 83
      */
84 84
     abstract protected function doSearch(Query $query);
85 85
 
Please login to merge, or discard this patch.
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -6,15 +6,10 @@
 block discarded – undo
6 6
 use Doctrine\Common\Util\ClassUtils;
7 7
 use Doctrine\ORM\EntityManager;
8 8
 use Doctrine\ORM\Query\Expr\OrderBy;
9
-
10 9
 use JMS\JobQueueBundle\Entity\Job;
11
-
12 10
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
13
-
14 11
 use Oro\Bundle\BatchBundle\ORM\Query\BufferedQueryResultIterator;
15
-
16 12
 use Oro\Bundle\EntityBundle\ORM\DoctrineHelper;
17
-
18 13
 use Oro\Bundle\SearchBundle\Command\IndexCommand;
19 14
 use Oro\Bundle\SearchBundle\Entity\Query as QueryLog;
20 15
 use Oro\Bundle\SearchBundle\Event\BeforeSearchEvent;
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/Engine/Indexer.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Get array with mapped entities
75 75
      *
76
-     * @return array
76
+     * @return string[]
77 77
      */
78 78
     public function getEntitiesListAliases()
79 79
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Get list of entities allowed to user
113 113
      *
114
-     * @return array
114
+     * @return string[]
115 115
      */
116 116
     public function getAllowedEntitiesListAliases()
117 117
     {
Please login to merge, or discard this patch.
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -3,21 +3,15 @@
 block discarded – undo
3 3
 namespace Oro\Bundle\UserBundle\EventListener;
4 4
 
5 5
 use Symfony\Component\Security\Core\SecurityContextInterface;
6
-
7 6
 use Doctrine\ORM\EntityManager;
8
-
9 7
 use Oro\Bundle\DataGridBundle\Datagrid\Common\DatagridConfiguration;
10 8
 use Oro\Bundle\DataGridBundle\Event\BuildBefore;
11
-
12 9
 use Oro\Bundle\SecurityBundle\Acl\AccessLevel;
13 10
 use Oro\Bundle\SecurityBundle\Acl\Voter\AclVoter;
14 11
 use Oro\Bundle\SecurityBundle\Acl\Domain\OneShotIsGrantedObserver;
15 12
 use Oro\Bundle\SecurityBundle\Owner\OwnerTreeProvider;
16
-
17 13
 use Oro\Bundle\UserBundle\Entity\User;
18
-
19 14
 use Oro\Bundle\OrganizationBundle\Entity\Organization;
20
-
21 15
 use Oro\Bundle\EntityConfigBundle\DependencyInjection\Utils\ServiceLink;
22 16
 
23 17
 /**
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/Engine/Orm/BaseDriver.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -282,9 +282,10 @@
 block discarded – undo
282 282
     /**
283 283
      * Create search string for non string parameters
284 284
      *
285
-     * @param $joinAlias
286
-     * @param $index
285
+     * @param string $joinAlias
286
+     * @param integer $index
287 287
      * @param $condition
288
+     * @param string $operator
288 289
      *
289 290
      * @return string
290 291
      */
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\Component\PropertyAccess\Tests\Unit;
4 4
 
5 5
 use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException;
6
-
7 6
 use Oro\Component\PropertyAccess\PropertyAccessor;
8 7
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClass;
9 8
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClassMagicCall;
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/Engine/Orm/PdoMysql.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
      *
200 200
      * @param QueryBuilder $qb
201 201
      * @param array        $words
202
-     * @param              $index
202
+     * @param              integer $index
203 203
      * @param  array       $searchCondition
204 204
      *
205 205
      * @return string
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\Component\PropertyAccess\Tests\Unit;
4 4
 
5 5
 use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException;
6
-
7 6
 use Oro\Component\PropertyAccess\PropertyAccessor;
8 7
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClass;
9 8
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClassMagicCall;
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/EventListener/IndexListener.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-     * @param $realTime bool
77
+     * @param boolean $realTime bool
78 78
      */
79 79
     public function setRealTimeUpdate($realTime)
80 80
     {
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\Component\PropertyAccess\Tests\Unit;
4 4
 
5 5
 use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException;
6
-
7 6
 use Oro\Component\PropertyAccess\PropertyAccessor;
8 7
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClass;
9 8
 use Oro\Component\PropertyAccess\Tests\Unit\Fixtures\TestClassMagicCall;
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/EventListener/PrepareResultItemListener.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * Get url for entity
64 64
      *
65 65
      * @param object $entity
66
-     * @param $item \Oro\Bundle\SearchBundle\Query\Result\Item
66
+     * @param \Oro\Bundle\SearchBundle\Query\Result\Item $item \Oro\Bundle\SearchBundle\Query\Result\Item
67 67
      * @return string
68 68
      */
69 69
     protected function getEntityUrl($entity, $item)
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * Get entity string
116 116
      *
117 117
      * @param $entity object
118
-     * @param $item \Oro\Bundle\SearchBundle\Query\Result\Item
118
+     * @param \Oro\Bundle\SearchBundle\Query\Result\Item $item \Oro\Bundle\SearchBundle\Query\Result\Item
119 119
      *
120 120
      * @return string
121 121
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\EventManager;
6 6
 use Doctrine\DBAL\Driver\Connection;
7
-
8 7
 use Symfony\Component\Filesystem\Filesystem;
9
-
10 8
 use Oro\Component\TestUtils\ORM\Mocks\DriverMock;
11 9
 use Oro\Component\TestUtils\ORM\Mocks\EntityManagerMock;
12 10
 
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/Extension/Pager/IndexerQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     }
106 106
 
107 107
     /**
108
-     * @return mixed
108
+     * @return string
109 109
      */
110 110
     public function getSortBy()
111 111
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @return mixed
116
+     * @return string|null
117 117
      */
118 118
     public function getSortOrder()
119 119
     {
Please login to merge, or discard this patch.