@@ -27,7 +27,7 @@ |
||
27 | 27 | * @param string $money |
28 | 28 | * @param string $isoCode |
29 | 29 | * |
30 | - * @return string |
|
30 | + * @return \Money\Money |
|
31 | 31 | */ |
32 | 32 | public function parse($money, $isoCode) |
33 | 33 | { |
@@ -51,7 +51,7 @@ |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | - * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Shared\NewRelicApi\NewRelicApiInterface |
|
54 | + * @return \Spryker\Shared\NewRelicApi\NewRelicApiInterface |
|
55 | 55 | */ |
56 | 56 | protected function getNewRelicApiMock() |
57 | 57 | { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | $request = new Request(); |
40 | 40 | $request->attributes->set('_route', 'foo/bar/baz'); |
41 | 41 | |
42 | - $controller = function () {}; |
|
42 | + $controller = function() {}; |
|
43 | 43 | $filterControllerEvent = new FilterControllerEvent( |
44 | 44 | $this->getKernelMock(), |
45 | 45 | $controller, |
@@ -55,7 +55,7 @@ |
||
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | - * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Shared\NewRelicApi\NewRelicApiInterface |
|
58 | + * @return \Spryker\Shared\NewRelicApi\NewRelicApiInterface |
|
59 | 59 | */ |
60 | 60 | protected function getNewRelicApiMock() |
61 | 61 | { |
@@ -43,7 +43,7 @@ |
||
43 | 43 | $request->attributes->set('controller', 'bar'); |
44 | 44 | $request->attributes->set('action', 'baz'); |
45 | 45 | |
46 | - $controller = function () {}; |
|
46 | + $controller = function() {}; |
|
47 | 47 | $filterControllerEvent = new FilterControllerEvent( |
48 | 48 | $this->getKernelMock(), |
49 | 49 | $controller, |
@@ -74,7 +74,7 @@ |
||
74 | 74 | * @api |
75 | 75 | * |
76 | 76 | * @param string $eventId |
77 | - * @param array $orderItemIds |
|
77 | + * @param integer[] $orderItemIds |
|
78 | 78 | * @param array $data |
79 | 79 | * |
80 | 80 | * @return array |
@@ -802,7 +802,7 @@ |
||
802 | 802 | |
803 | 803 | /** |
804 | 804 | * @param \Orm\Zed\Sales\Persistence\SpySalesOrderItem $orderItem |
805 | - * @param array $processes |
|
805 | + * @param ProcessInterface[] $processes |
|
806 | 806 | * @param array $sourceStateBuffer |
807 | 807 | * @param \Spryker\Zed\Oms\Business\OrderStateMachine\TimeoutInterface $timeoutModel |
808 | 808 | * @param \Spryker\Zed\Oms\Business\Util\TransitionLogInterface $log |
@@ -787,7 +787,7 @@ |
||
787 | 787 | |
788 | 788 | foreach ($orderItems as $orderItem) { |
789 | 789 | |
790 | - $this->handleDatabaseTransaction(function () use ($orderItem, $processes, $sourceStateBuffer, $timeoutModel, $log, $currentTime) { |
|
790 | + $this->handleDatabaseTransaction(function() use ($orderItem, $processes, $sourceStateBuffer, $timeoutModel, $log, $currentTime) { |
|
791 | 791 | $this->executeSaveOrderItemTransaction( |
792 | 792 | $orderItem, |
793 | 793 | $processes, |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | * @param \Spryker\Zed\Oms\Business\Process\TransitionInterface $transition |
376 | 376 | * @param string $label |
377 | 377 | * |
378 | - * @return array |
|
378 | + * @return string |
|
379 | 379 | */ |
380 | 380 | protected function addEdgeConditionText(TransitionInterface $transition, $label) |
381 | 381 | { |
@@ -396,7 +396,7 @@ discard block |
||
396 | 396 | * @param \Spryker\Zed\Oms\Business\Process\TransitionInterface $transition |
397 | 397 | * @param string $label |
398 | 398 | * |
399 | - * @return array |
|
399 | + * @return string |
|
400 | 400 | */ |
401 | 401 | protected function addEdgeEventText(TransitionInterface $transition, $label) |
402 | 402 | { |
@@ -52,7 +52,7 @@ |
||
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
55 | - * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Oms\OmsConfig |
|
55 | + * @return OmsConfig |
|
56 | 56 | */ |
57 | 57 | protected function createOmsConfigMock() |
58 | 58 | { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | /** |
27 | 27 | * @param array $codes |
28 | 28 | * |
29 | - * @return bool |
|
29 | + * @return integer |
|
30 | 30 | */ |
31 | 31 | public function releaseUsedVoucherCodes(array $codes) |
32 | 32 | { |
@@ -29,7 +29,7 @@ |
||
29 | 29 | /** |
30 | 30 | * @param \Generated\Shared\Transfer\QuoteTransfer $quoteTransfer |
31 | 31 | * |
32 | - * @return \Generated\Shared\Transfer\PayolutionCalculationResponseTransfer |
|
32 | + * @return \Spryker\Shared\Kernel\Transfer\TransferInterface |
|
33 | 33 | */ |
34 | 34 | public function calculateInstallmentPayments(QuoteTransfer $quoteTransfer) |
35 | 35 | { |