Passed
Branch master (7a7cfe)
by Fabian
45:14
created
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
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
         }
253 253
 
254 254
         $process = new Process($command, $this->applicationRoot, null, null, 4800);
255
-        $process->run(function ($type, $buffer) {
255
+        $process->run(function($type, $buffer) {
256 256
             echo $buffer;
257 257
         });
258 258
 
Please login to merge, or discard this patch.
Development/Business/DependencyTree/ViolationFinder/BundleUsesConnector.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 array $dependency
17 17
      *
18
-     * @return bool
18
+     * @return integer
19 19
      */
20 20
     public function isViolation(array $dependency)
21 21
     {
Please login to merge, or discard this patch.
Development/Business/DependencyTree/ViolationFinder/UseForeignConstants.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 array $dependency
17 17
      *
18
-     * @return bool
18
+     * @return integer
19 19
      */
20 20
     public function isViolation(array $dependency)
21 21
     {
Please login to merge, or discard this patch.
Development/Business/DependencyTree/ViolationFinder/UseForeignException.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 array $dependency
17 17
      *
18
-     * @return bool
18
+     * @return integer
19 19
      */
20 20
     public function isViolation(array $dependency)
21 21
     {
Please login to merge, or discard this patch.
src/Spryker/Zed/Development/Business/DevelopmentBusinessFactory.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     }
300 300
 
301 301
     /**
302
-     * @return \Spryker\Zed\Development\Business\DependencyTree\DependencyFinder\LocatorClient
302
+     * @return LocatorService
303 303
      */
304 304
     protected function createLocatorServiceChecker()
305 305
     {
@@ -895,7 +895,7 @@  discard block
 block discarded – undo
895 895
     }
896 896
 
897 897
     /**
898
-     * @return \Spryker\Zed\Development\Business\IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
898
+     * @return IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
899 899
      */
900 900
     protected function getYvesIdeAutoCompletionMethodBuilderStack()
901 901
     {
@@ -906,7 +906,7 @@  discard block
 block discarded – undo
906 906
     }
907 907
 
908 908
     /**
909
-     * @return \Spryker\Zed\Development\Business\IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
909
+     * @return IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
910 910
      */
911 911
     protected function getZedIdeAutoCompletionMethodBuilderStack()
912 912
     {
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
     }
919 919
 
920 920
     /**
921
-     * @return \Spryker\Zed\Development\Business\IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
921
+     * @return IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
922 922
      */
923 923
     protected function getClientIdeAutoCompletionMethodBuilderStack()
924 924
     {
@@ -928,7 +928,7 @@  discard block
 block discarded – undo
928 928
     }
929 929
 
930 930
     /**
931
-     * @return \Spryker\Zed\Development\Business\IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
931
+     * @return IdeAutoCompletion\Bundle\MethodBuilder\BundleMethodBuilderInterface[]
932 932
      */
933 933
     protected function getServiceIdeAutoCompletionMethodBuilderStack()
934 934
     {
@@ -1001,7 +1001,7 @@  discard block
 block discarded – undo
1001 1001
     /**
1002 1002
      * @param array $options
1003 1003
      *
1004
-     * @return \Spryker\Zed\Development\Business\IdeAutoCompletion\Generator\GeneratorInterface[]
1004
+     * @return IdeAutoCompletion\Generator\GeneratorInterface[]
1005 1005
      */
1006 1006
     protected function getIdeAutoCompletionGeneratorStack(array $options)
1007 1007
     {
Please login to merge, or discard this patch.
Spryker/Zed/Development/Business/IdeAutoCompletion/Bundle/BundleFinder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,8 +116,8 @@
 block discarded – undo
116 116
     }
117 117
 
118 118
     /**
119
-     * @param \ArrayObject|\Generated\Shared\Transfer\IdeAutoCompletionBundleMethodTransfer[] $existingMethodTransferCollection
120
-     * @param \ArrayObject|\Generated\Shared\Transfer\IdeAutoCompletionBundleMethodTransfer[] $methodTransferCollection
119
+     * @param ArrayObject $existingMethodTransferCollection
120
+     * @param ArrayObject $methodTransferCollection
121 121
      *
122 122
      * @return \ArrayObject|\Generated\Shared\Transfer\IdeAutoCompletionBundleMethodTransfer[]
123 123
      */
Please login to merge, or discard this patch.
Business/DependencyTree/DependencyFinder/test_files/ExternalDependency.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace SprykerTest\Zed\Development\Business\DependencyTree\DependencyFinder\Fixtures;
4 4
 
5 5
 use Spryker\Zed\Development\Business\DependencyTree\DependencyFinder\ExternalDependency as BaseExternalDependency;
6
-use Company\MyClass as Something;
7 6
 use Exception;
8 7
 
9 8
 abstract class ExternalDependency
Please login to merge, or discard this patch.
Discount/src/Spryker/Zed/Discount/Business/DiscountBusinessFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
     }
148 148
 
149 149
     /**
150
-     * @return \Spryker\Zed\Discount\Dependency\Plugin\DiscountCalculatorPluginInterface[]|\Spryker\Zed\Discount\Dependency\Plugin\DiscountAmountCalculatorPluginInterface[]
150
+     * @return \Spryker\Zed\Discount\Dependency\Plugin\DiscountAmountCalculatorPluginInterface[]
151 151
      */
152 152
     public function getCalculatorPlugins()
153 153
     {
Please login to merge, or discard this patch.