Completed
Push — master ( bc9b71...b8b5e6 )
by
unknown
63:33
created
TrackingBundle/Tests/Unit/Form/Handler/TrackingWebsiteHandlerTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param string $method
42
-     * @param bool   $formValid
42
+     * @param bool   $isFormValid
43 43
      * @param bool   $isFlushCalled
44 44
      *
45 45
      * @dataProvider processProvider
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/TranslationBundle/Entity/Translation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @param mixed $key
66
+     * @param string $key
67 67
      * @return $this
68 68
      */
69 69
     public function setKey($key)
Please login to merge, or discard this patch.
src/Oro/Bundle/TranslationBundle/Tests/Unit/Fixtures/SomeClass.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -15,6 +15,10 @@
 block discarded – undo
15 15
         return $someVariable;
16 16
     }
17 17
 
18
+    /**
19
+     * @param string $arg1
20
+     * @param string $arg2
21
+     */
18 22
     protected function someAnotherFunc($arg1, $arg2)
19 23
     {
20 24
         return array($arg1, $arg2);
Please login to merge, or discard this patch.
Oro/Bundle/TranslationBundle/Tests/Unit/Provider/TranslationServiceTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@
 block discarded – undo
314 314
     }
315 315
 
316 316
     /**
317
-     * @param array $methods
317
+     * @param string[] $methods
318 318
      * @param array $args
319 319
      *
320 320
      * @return \PHPUnit_Framework_MockObject_MockObject|TranslationServiceProvider
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/TranslationBundle/Translation/Translator.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -153,6 +153,7 @@
 block discarded – undo
153 153
 
154 154
     /**
155 155
      * {@inheritdoc}
156
+     * @param string $locale
156 157
      */
157 158
     protected function loadCatalogue($locale)
158 159
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,11 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Cache\Cache;
6 6
 use Doctrine\Common\Cache\ClearableCache;
7
-
8 7
 use Symfony\Component\Translation\Loader\LoaderInterface;
9 8
 use Symfony\Bundle\FrameworkBundle\Translation\Translator as BaseTranslator;
10
-
11
-use Oro\Bundle\EntityBundle\Tools\SafeDatabaseChecker;
12 9
 use Oro\Bundle\TranslationBundle\Entity\Translation;
13 10
 
14 11
 class Translator extends BaseTranslator
Please login to merge, or discard this patch.
src/Oro/Bundle/UIBundle/Tools/EntityLabelBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * Returns significant for building the translation key parts of the class name
82 82
      *
83
-     * @param $className
83
+     * @param string $className
84 84
      *
85 85
      * @return array
86 86
      */
Please login to merge, or discard this patch.
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.