auto fix phpcs errors

This commit is contained in:
Kirill Braslavsky 2021-03-17 13:59:18 +02:00
parent 6b61205474
commit d04cd56cd9
3 changed files with 16 additions and 16 deletions

View file

@ -123,11 +123,11 @@ class OrderProcessor {
/**
* Processes a given WooCommerce order and captured/authorizes the connected PayPal orders.
*
* @param \WC_Order $wc_order The WooCommerce order.
* @param \WC_Order $wc_order The WooCommerce order.
*
* @return bool
*/
public function process( \WC_Order $wc_order): bool {
public function process( \WC_Order $wc_order ): bool {
$order = $this->session_handler->order();
if ( ! $order ) {
return false;