1 | <?php |
||
5 | class Venture extends Base implements VentureInterface |
||
6 | { |
||
7 | /** |
||
8 | * @return \Iris\Interfaces\IrisPartner |
||
9 | */ |
||
10 | 8 | public function getPartnerService() |
|
14 | |||
15 | /** |
||
16 | * @return \Iris\Interfaces\IrisVenture |
||
17 | */ |
||
18 | 2 | public function getVentureService() |
|
22 | |||
23 | /** |
||
24 | * @return \Iris\Interfaces\Customer |
||
25 | */ |
||
26 | 2 | public function getCustomerService() |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 2 | public function createOrder(array $orderData, $originCode) |
|
57 | |||
58 | 2 | /** |
|
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function confirmPaymentOrder($orderNr, $originCode) |
||
73 | |||
74 | 1 | /** |
|
75 | * Send order confirmation to partner |
||
76 | * |
||
77 | * @param \Iris\Transfer\Sales\Order $order |
||
78 | * @param string $partnerCode |
||
|
|||
79 | * @return void |
||
80 | 1 | */ |
|
81 | public function confirmOrderOnPartner( |
||
86 | |||
87 | /** |
||
88 | 2 | * {@inheritdoc} |
|
89 | */ |
||
90 | 2 | public function findOrderByOrderNumber($orderNr, $originCode) |
|
95 | 2 | ||
96 | 1 | /** |
|
97 | * {@inheritdoc} |
||
98 | 1 | */ |
|
99 | public function cancelOrder($orderNr, $originCode) |
||
111 | |||
112 | 1 | /** |
|
113 | * {@inheritdoc} |
||
114 | 1 | */ |
|
115 | 1 | public function createProductsOnPartner(\Iris\Transfer\Catalog\ConfigCollection $products, $partnerCode) |
|
119 | |||
120 | 1 | /** |
|
121 | * {@inheritdoc} |
||
122 | 1 | */ |
|
123 | 1 | public function updateProductsOnPartner(\Iris\Transfer\Catalog\ConfigCollection $products) |
|
127 | |||
128 | 1 | /** |
|
129 | * {@inheritdoc} |
||
130 | */ |
||
131 | public function updateStockOnPartner($skuSimple, $stock) |
||
135 | 1 | ||
136 | 1 | /** |
|
137 | 1 | * {@inheritdoc} |
|
138 | 1 | */ |
|
139 | 1 | public function updatePriceOnPartner( |
|
154 | |||
155 | /** |
||
156 | 1 | * {@inheritdoc} |
|
157 | */ |
||
158 | 1 | public function isPartnerItem(\Iris\Transfer\Sales\Order\Item $item) |
|
163 | |||
164 | 1 | /** |
|
165 | * {@inheritdoc} |
||
166 | 1 | */ |
|
167 | public function setStatusToShippedOnPartner(\Iris\Transfer\Tracking\ShippedCollection $items) |
||
171 | |||
172 | /** |
||
173 | * {@inheritdoc} |
||
174 | 1 | */ |
|
175 | public function setStatusToDeliveredOnPartner(\Iris\Transfer\Tracking\DeliveredCollection $items) |
||
179 | |||
180 | /** |
||
181 | * NOTE: Not implemented yet! |
||
182 | 1 | * |
|
183 | * {@inheritdoc} |
||
184 | 1 | */ |
|
185 | public function setStatusToCanceledOnPartner(\Iris\Transfer\Tracking\CanceledCollection $items) |
||
189 | |||
190 | 1 | /** |
|
191 | * {@inheritdoc} |
||
192 | 1 | */ |
|
193 | public function setStatusToFailedDeliveryOnPartner(\Iris\Transfer\Tracking\FailedDeliveryCollection $items) |
||
197 | |||
198 | /** |
||
199 | * {@inheritdoc} |
||
200 | */ |
||
201 | public function getName() |
||
205 | } |
||
206 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.