Passed
Push — master ( 7a7cfe...9ace4b )
by Mark
35:26
created
tests/SprykerTest/Shared/Customer/_support/Helper/CustomerDataHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @return \Spryker\Zed\Mail\Business\MailFacadeInterface|object
54
+     * @return MailFacadeInterface
55 55
      */
56 56
     private function getMailFacadeMock()
57 57
     {
Please login to merge, or discard this patch.
Customer/tests/SprykerTest/Zed/Customer/Business/CustomerFacadeTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -498,7 +498,7 @@
 block discarded – undo
498 498
      * @param \Spryker\Shared\Kernel\Transfer\TransferInterface|null $transfer
499 499
      * @param bool $hasEmail
500 500
      *
501
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Customer\Business\CustomerBusinessFactory
501
+     * @return \Spryker\Zed\Kernel\Business\AbstractBusinessFactory
502 502
      */
503 503
     protected function getFactory(TransferInterface $transfer = null, $hasEmail = true)
504 504
     {
Please login to merge, or discard this patch.
SprykerTest/Zed/Customer/Communication/Controller/IndexControllerCest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace SprykerTest\Zed\Customer\Communication\Controller;
9 9
 
10 10
 use Codeception\Util\Stub;
11
-
12 11
 use Generated\Shared\DataBuilder\CustomerBuilder;
13 12
 use Spryker\Zed\Customer\CustomerDependencyProvider;
14 13
 use Spryker\Zed\Customer\Dependency\Facade\CustomerToMailInterface;
Please login to merge, or discard this patch.
CustomerApi/src/Spryker/Zed/CustomerApi/Business/CustomerApiFacade.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@
 block discarded – undo
39 39
      * @api
40 40
      *
41 41
      * @param int $idCustomer
42
-     * @param \Generated\Shared\Transfer\ApiFilterTransfer $apiFilterTransfer
43 42
      *
44 43
      * @return \Generated\Shared\Transfer\ApiItemTransfer $customerTransfer
45 44
      */
Please login to merge, or discard this patch.
src/Spryker/Zed/CustomerGroup/Communication/Form/CustomerGroupForm.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 \Spryker\Zed\CustomerGroup\Persistence\CustomerGroupQueryContainerInterface $customerGroupQueryContainer
49
-     * @param \Symfony\Component\Form\FormTypeInterface $customerAssignmentForm
49
+     * @param CustomerAssignmentForm $customerAssignmentForm
50 50
      * @param int|null $idCustomerGroup
51 51
      */
52 52
     public function __construct(
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
 
155 155
         $constraints[] = new Callback([
156 156
             'methods' => [
157
-                function ($name, ExecutionContextInterface $context) use ($customerGroupQuery) {
157
+                function($name, ExecutionContextInterface $context) use ($customerGroupQuery) {
158 158
                     if ($customerGroupQuery->findByName($name)->count() > 0) {
159 159
                         $context->addViolation('Name is already used');
160 160
                     }
Please login to merge, or discard this patch.
CustomerGroup/Communication/Table/Assignment/AbstractAssignmentTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-     * @param \Orm\Zed\Customer\Persistence\SpyCustomer[]|\Propel\Runtime\Collection\ObjectCollection $customerEntities
169
+     * @param SpyCustomer[] $customerEntities
170 170
      *
171 171
      * @return array
172 172
      */
Please login to merge, or discard this patch.
DataImport/src/Spryker/Zed/DataImport/Business/Model/DataImporter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     /**
184 184
      * @param \Spryker\Zed\DataImport\Business\Model\DataReader\DataReaderInterface $dataReader
185 185
      *
186
-     * @return \Generated\Shared\Transfer\DataImporterReportTransfer
186
+     * @return Exception
187 187
      */
188 188
     protected function prepareDataImportReport(DataReaderInterface $dataReader)
189 189
     {
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     /**
206 206
      * @param \Generated\Shared\Transfer\DataImporterConfigurationTransfer|null $dataImporterConfigurationTransfer
207 207
      *
208
-     * @return \Spryker\Zed\DataImport\Business\Model\DataReader\DataReaderInterface|\Spryker\Zed\DataImport\Business\Model\DataSet\DataSet[]
208
+     * @return DataReaderInterface
209 209
      */
210 210
     protected function getDataReader(DataImporterConfigurationTransfer $dataImporterConfigurationTransfer = null)
211 211
     {
Please login to merge, or discard this patch.
src/Spryker/Zed/DataImport/Communication/Console/DataImportConsole.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
     /**
173 173
      * @param \Symfony\Component\Console\Input\InputInterface $input
174 174
      *
175
-     * @return \Generated\Shared\Transfer\DataImporterConfigurationTransfer
175
+     * @return null|DataImporterConfigurationTransfer
176 176
      */
177 177
     protected function buildDataImportConfiguration(InputInterface $input)
178 178
     {
Please login to merge, or discard this patch.
src/Spryker/Zed/Development/Business/CodeStyleSniffer/CodeStyleSniffer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
      * @param string $bundle
128 128
      * @param string|null $pathSuffix
129 129
      *
130
-     * @return array
130
+     * @return string[]
131 131
      */
132 132
     protected function buildPaths($bundle, $pathSuffix = null)
133 133
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         }
149 149
 
150 150
         $process = new Process($command, $this->applicationRoot, null, null, 4800);
151
-        $process->run(function ($type, $buffer) {
151
+        $process->run(function($type, $buffer) {
152 152
             echo $buffer;
153 153
         });
154 154
 
Please login to merge, or discard this patch.