@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
91 | - * @param ReflectionMethod $method |
|
91 | + * @param \ReflectionMethod $method |
|
92 | 92 | * @param array $data |
93 | 93 | * @return array |
94 | 94 | * @throws \Iris\Exceptions\ParameterNotFound |
@@ -106,8 +106,8 @@ discard block |
||
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
109 | - * @param $parameterName |
|
110 | - * @param ReflectionMethod $method |
|
109 | + * @param string $parameterName |
|
110 | + * @param \ReflectionMethod $method |
|
111 | 111 | * @param $data |
112 | 112 | * @return void |
113 | 113 | * @throws \Iris\Exceptions\ParameterNotFound |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | { |
10 | 10 | /** |
11 | 11 | * Gets Venture service. |
12 | - * @return Iris\Interfaces\IrisVenture |
|
12 | + * @return \Iris\Interfaces\Service |
|
13 | 13 | */ |
14 | 14 | public function getVentureService() |
15 | 15 | { |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Gets Stock service. |
21 | - * @return Iris\Interfaces\Stock |
|
21 | + * @return \Iris\Interfaces\Service |
|
22 | 22 | */ |
23 | 23 | public function getStockService() |
24 | 24 | { |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Gets Stock service. |
30 | - * @return Iris\Interfaces\Catalog |
|
30 | + * @return \Iris\Interfaces\Service |
|
31 | 31 | */ |
32 | 32 | public function getCatalogService() |
33 | 33 | { |
@@ -46,15 +46,14 @@ discard block |
||
46 | 46 | |
47 | 47 | /** |
48 | 48 | * Check if current item is from some iris venture. |
49 | - * @param Iris\Transfer\Sales\Order\Item $item |
|
49 | + * @param \Iris\Transfer\Sales\Order\Item $item |
|
50 | 50 | * @return bool |
51 | 51 | * @throws Iris\Exceptions\VentureNotFound |
52 | 52 | */ |
53 | 53 | public function isVentureItem(\Iris\Transfer\Sales\Order\Item $item); |
54 | 54 | |
55 | 55 | /** |
56 | - * @param Iris\Transfer\Venture $venture |
|
57 | - * @param Iris\Transfer\Sales\Order $order |
|
56 | + * @param Iris\Transfer\Venture $ventureCode |
|
58 | 57 | * @return bool |
59 | 58 | * @throws Iris\Exceptions\OrderNotFound |
60 | 59 | * @throws Iris\Exceptions\RetryMessage |
@@ -62,8 +61,7 @@ discard block |
||
62 | 61 | public function sendOrderToVenture($orderNumber, $ventureCode); |
63 | 62 | |
64 | 63 | /** |
65 | - * @param Iris\Transfer\Venture $venture |
|
66 | - * @param Iris\Transfer\Sales\Order $order |
|
64 | + * @param Iris\Transfer\Venture $ventureCode |
|
67 | 65 | * @return bool |
68 | 66 | * @throws Iris\Exceptions\OrderNotFound |
69 | 67 | * @throws Iris\Exceptions\RetryMessage |
@@ -71,8 +69,7 @@ discard block |
||
71 | 69 | public function confirmOrderPaidOnVenture($orderNumber, $ventureCode); |
72 | 70 | |
73 | 71 | /** |
74 | - * @param Iris\Transfer\Venture $venture |
|
75 | - * @param Iris\Transfer\Sales\Order $order |
|
72 | + * @param Iris\Transfer\Venture $ventureCode |
|
76 | 73 | * @return bool |
77 | 74 | * @throws Iris\Exceptions\OrderNotFound |
78 | 75 | * @throws Iris\Exceptions\RetryMessage |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | class Venture extends Base implements VentureInterface |
6 | 6 | { |
7 | 7 | /** |
8 | - * @return Iris\Interfaces\IrisPartner |
|
8 | + * @return \Iris\Interfaces\Service |
|
9 | 9 | */ |
10 | 10 | public function getPartnerService() |
11 | 11 | { |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | } |
14 | 14 | |
15 | 15 | /** |
16 | - * @return Iris\Interfaces\IrisVenture |
|
16 | + * @return \Iris\Interfaces\Service |
|
17 | 17 | */ |
18 | 18 | public function getVentureService() |
19 | 19 | { |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
24 | - * @return Iris\Interfaces\Customer |
|
24 | + * @return \Iris\Interfaces\Service |
|
25 | 25 | */ |
26 | 26 | public function getCustomerService() |
27 | 27 | { |