Completed
Push — master ( 5640c5...288216 )
by
unknown
02:45
created
src/Iris/SaleWrapper/Partner.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Iris/SaleWrapper/PartnerInterface.php 1 patch
Doc Comments   +4 added lines, -7 removed lines patch added patch discarded remove patch
@@ -46,15 +46,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Iris/SaleWrapper/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @param $parameterName
109
+     * @param string $parameterName
110 110
      * @param \ReflectionMethod $method
111 111
      * @param $data
112 112
      * @return void
Please login to merge, or discard this patch.