@@ -172,7 +172,7 @@ |
||
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 | { |
@@ -127,7 +127,7 @@ |
||
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 | { |
@@ -252,7 +252,7 @@ |
||
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 |
@@ -15,7 +15,7 @@ |
||
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 | { |
@@ -15,7 +15,7 @@ |
||
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 | { |
@@ -15,7 +15,7 @@ |
||
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 | { |
@@ -299,7 +299,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | { |
@@ -116,8 +116,8 @@ |
||
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 | */ |
@@ -3,7 +3,6 @@ |
||
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 |
@@ -147,7 +147,7 @@ |
||
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 | { |