Completed
Push — master ( 8f896b...177e14 )
by Roy
02:13
created
includes/class-wc-stripe-api.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 
24 24
 	/**
25 25
 	 * Set secret API Key.
26
-	 * @param string $key
27 26
 	 */
28 27
 	public static function set_secret_key( $secret_key ) {
29 28
 		self::$secret_key = $secret_key;
Please login to merge, or discard this patch.
includes/payment-methods/class-wc-gateway-stripe-alipay.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@
 block discarded – undo
289 289
 	 *
290 290
 	 * @param int  $order_id Reference.
291 291
 	 * @param bool $retry Should we retry on fail.
292
-	 * @param bool $force_save_source Force payment source to be saved.
292
+	 * @param bool $force_save_save Force payment source to be saved.
293 293
 	 *
294 294
 	 * @throws Exception If payment will not be accepted.
295 295
 	 *
Please login to merge, or discard this patch.
woocommerce-gateway-stripe.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -162,6 +162,8 @@
 block discarded – undo
162 162
 		 *
163 163
 		 * @since 1.0.0
164 164
 		 * @version 4.0.0
165
+		 * @param string $slug
166
+		 * @param string $class
165 167
 		 */
166 168
 		public function add_admin_notice( $slug, $class, $message, $dismissible = false ) {
167 169
 			$this->notices[ $slug ] = array(
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-compat.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 
315 315
 	/**
316 316
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
317
-	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
317
+	 * @param integer $renewal_order
318 318
 	 */
319 319
 	public function delete_renewal_meta( $renewal_order ) {
320 320
 		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id() ), 'Stripe Fee' );
@@ -556,6 +556,8 @@  discard block
 block discarded – undo
556 556
 	/**
557 557
 	 * Process the pre-order
558 558
 	 * @param int $order_id
559
+	 * @param boolean $retry
560
+	 * @param boolean $force_save_source
559 561
 	 * @return array
560 562
 	 */
561 563
 	public function process_pre_order( $order_id, $retry, $force_save_source ) {
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-sepa-compat.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 
315 315
 	/**
316 316
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
317
-	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
317
+	 * @param integer $renewal_order
318 318
 	 */
319 319
 	public function delete_renewal_meta( $renewal_order ) {
320 320
 		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id() ), 'Stripe Fee' );
@@ -556,6 +556,8 @@  discard block
 block discarded – undo
556 556
 	/**
557 557
 	 * Process the pre-order
558 558
 	 * @param int $order_id
559
+	 * @param boolean $retry
560
+	 * @param boolean $force_save_source
559 561
 	 * @return array
560 562
 	 */
561 563
 	public function process_pre_order( $order_id, $retry, $force_save_source ) {
Please login to merge, or discard this patch.
includes/class-wc-stripe-customer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,6 @@
 block discarded – undo
213 213
 	/**
214 214
 	 * Get a customers saved sources using their Stripe ID.
215 215
 	 *
216
-	 * @param  string $customer_id
217 216
 	 * @return array
218 217
 	 */
219 218
 	public function get_sources() {
Please login to merge, or discard this patch.
includes/abstracts/abstract-wc-stripe-payment-gateway.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,6 +51,8 @@  discard block
 block discarded – undo
51 51
 	 *
52 52
 	 * @since 4.0.0
53 53
 	 * @version 4.0.0
54
+	 * @param string $slug
55
+	 * @param string $class
54 56
 	 */
55 57
 	public function add_admin_notice( $slug, $class, $message ) {
56 58
 		$this->notices[ $slug ] = array(
@@ -410,7 +412,7 @@  discard block
 block discarded – undo
410 412
 	 * Checks if card is 3DS.
411 413
 	 *
412 414
 	 * @since 4.0.4
413
-	 * @param object $source_object
415
+	 * @param stdClass $source_object
414 416
 	 * @return bool
415 417
 	 */
416 418
 	public function is_3ds_card( $source_object ) {
Please login to merge, or discard this patch.
includes/payment-methods/class-wc-stripe-payment-request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	 * Get this instance.
105 105
 	 *
106 106
 	 * @since 4.0.6
107
-	 * @return class
107
+	 * @return WC_Stripe_Payment_Request
108 108
 	 */
109 109
 	public static function instance() {
110 110
 		return self::$_this;
Please login to merge, or discard this patch.