Completed
Push — master ( 468850...c98472 )
by
unknown
54:13
created
src/Oro/Bundle/ImportExportBundle/Field/DatabaseHelper.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     }
143 143
 
144 144
     /**
145
-     * @param object $entity
145
+     * @param \stdClass $entity
146 146
      * @return object
147 147
      */
148 148
     public function getEntityReference($entity)
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     /**
288 288
      * We should limit data with current organization
289 289
      *
290
-     * @param $entityName
290
+     * @param string $entityName
291 291
      * @return bool
292 292
      */
293 293
     protected function shouldBeAddedOrganizationLimits($entityName)
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/ImportExportBundle/Formatter/ExcelDateTimeTypeFormatter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@
 block discarded – undo
96 96
 
97 97
     /**
98 98
      * {@inheritdoc}
99
+     * @param integer $dateType
100
+     * @param integer $timeType
101
+     * @param string $locale
99 102
      */
100 103
     public function getPattern($dateType, $timeType, $locale = null)
101 104
     {
Please login to merge, or discard this patch.
src/Oro/Bundle/ImportExportBundle/Handler/AbstractImportHandler.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -132,10 +132,10 @@
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @param $jobName
136
-     * @param $processorAlias
137
-     * @param $inputFormat
138
-     * @param $inputFilePrefix
135
+     * @param string $jobName
136
+     * @param string $processorAlias
137
+     * @param string $inputFormat
138
+     * @param string $inputFilePrefix
139 139
      * @param array $options
140 140
      * @param $entityName
141 141
      * @return JobResult
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/ImportExportBundle/Handler/ExportHandler.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
     /**
149 149
      * Handles download export file action
150 150
      *
151
-     * @param $fileName
151
+     * @param string $fileName
152 152
      * @return Response
153 153
      */
154 154
     public function handleDownloadExportResult($fileName)
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.
Serializer/Normalizer/AbstractContextModeAwareNormalizer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
      */
17 17
     protected $defaultMode = null;
18 18
 
19
+    /**
20
+     * @param string $defaultMode
21
+     */
19 22
     public function __construct(array $availableModes, $defaultMode = null)
20 23
     {
21 24
         $this->setAvailableModes($availableModes);
Please login to merge, or discard this patch.
Bundle/ImportExportBundle/Serializer/Normalizer/CollectionNormalizer.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
      * @param Collection $object object to normalize
41 41
      * @param mixed $format
42
-     * @param array $context
42
+     * @param string[] $context
43 43
      * @return array
44 44
      */
45 45
     public function normalize($object, $format = null, array $context = array())
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/ImportExportBundle/Serializer/Serializer.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -145,6 +145,7 @@  discard block
 block discarded – undo
145 145
 
146 146
     /**
147 147
      * {@inheritdoc}
148
+     * @param string $format
148 149
      */
149 150
     private function normalizeObject($object, $format = null, array $context = [])
150 151
     {
@@ -179,6 +180,7 @@  discard block
 block discarded – undo
179 180
 
180 181
     /**
181 182
      * {@inheritdoc}
183
+     * @param string $format
182 184
      */
183 185
     private function getNormalizer($data, $format = null, array $context = [])
184 186
     {
@@ -200,6 +202,8 @@  discard block
 block discarded – undo
200 202
 
201 203
     /**
202 204
      * {@inheritdoc}
205
+     * @param string $type
206
+     * @param string $format
203 207
      */
204 208
     private function getDenormalizer($data, $type, $format = null, array $context = [])
205 209
     {
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.
Bundle/ImportExportBundle/Tests/Unit/Formatter/FormatterProviderTest.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -61,6 +61,9 @@
 block discarded – undo
61 61
         $this->formatter->getFormatterFor('non_exist_type', 'test_type');
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $id
66
+     */
64 67
     protected function setContainerMock($id, \stdClass $testTypeFormatter)
65 68
     {
66 69
         $this->container
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/ImportExportBundle/Tests/Unit/Reader/CsvFileReaderTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
 
181 181
     /**
182 182
      * @param \PHPUnit_Framework_MockObject_MockObject $context
183
-     * @return \PHPUnit_Framework_MockObject_MockObject|StepExecution
183
+     * @return StepExecution
184 184
      */
185 185
     protected function getMockStepExecution($context)
186 186
     {
Please login to merge, or discard this patch.