Completed
Push — master ( 468850...c98472 )
by
unknown
54:13
created
src/Oro/Bundle/UIBundle/Twig/CeilExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * PHP ceil wrapper
19 19
      *
20 20
      * @param float $number
21
-     * @return int
21
+     * @return double
22 22
      */
23 23
     public function ceil($number)
24 24
     {
Please login to merge, or discard this patch.
src/Oro/Bundle/UIBundle/Twig/DateExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * Get translated age string.
55 55
      *
56
-     * @param string|\DateTime $date
56
+     * @param \DateTime $date
57 57
      * @param array $options
58 58
      * @return string
59 59
      */
Please login to merge, or discard this patch.
src/Oro/Bundle/UIBundle/Twig/FormExtension.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
     /**
48 48
      * @param \Twig_Environment $environment
49
-     * @param array $data
49
+     * @param string[] $data
50 50
      * @param FormView $form
51 51
      * @return array
52 52
      */
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/UIBundle/Twig/PlaceholderExtension.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * @param array  $variables
72 72
      * @param array  $attributes Supported attributes:
73 73
      *                           'delimiter' => string
74
-     * @return string|array
74
+     * @return string
75 75
      */
76 76
     public function renderPlaceholder($name, array $variables = array(), array $attributes = array())
77 77
     {
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/UIBundle/Twig/SkypeButtonExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * @param \Twig_Environment $environment
30 30
      * @param string $skypeUserName
31 31
      * @param array $options
32
-     * @return int
32
+     * @return string
33 33
      */
34 34
     public function getSkypeButton(\Twig_Environment $environment, $skypeUserName, $options = array())
35 35
     {
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Autocomplete/UserAclHandler.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
      * @param string       $name
224 224
      * @param object|array $item
225 225
      *
226
-     * @return mixed
226
+     * @return \Oro\Bundle\AttachmentBundle\Entity\File
227 227
      */
228 228
     protected function getPropertyValue($name, $item)
229 229
     {
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/UserBundle/Autocomplete/UserWithoutCurrentHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param SecurityFacade    $securityFacade
17 17
      * @param AttachmentManager $attachmentManager
18
-     * @param array             $userEntityName
18
+     * @param string             $userEntityName
19 19
      * @param array             $properties
20 20
      */
21 21
     public function __construct(
Please login to merge, or discard this patch.
src/Oro/Bundle/UserBundle/Controller/Api/Rest/UserController.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -318,6 +318,7 @@
 block discarded – undo
318 318
 
319 319
     /**
320 320
      * {@inheritdoc}
321
+     * @param User $entity
321 322
      */
322 323
     protected function getPreparedItem($entity, $resultFields = [])
323 324
     {
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/UserBundle/Controller/GroupController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,13 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6 6
 use Symfony\Component\HttpFoundation\Request;
7
-
8 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9 8
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
10
-
11 9
 use Oro\Bundle\UserBundle\Entity\Group;
12 10
 use Oro\Bundle\SecurityBundle\Annotation\Acl;
13
-use Oro\Bundle\SecurityBundle\Annotation\AclAncestor;
14 11
 
15 12
 /**
16 13
  * @Route("/group")
Please login to merge, or discard this patch.