Files
carpseeds.pl/wp-content/plugins/przelewy24/includes/class-p24-product-simple.php
2024-07-15 11:28:08 +02:00

28 lines
521 B
PHP

<?php
/**
* File that define P24_Product_Simple class.
*
* @package Przelewy24
*/
defined( 'ABSPATH' ) || exit;
/**
* The class add to parent awareness of multiple currencies.
*/
class P24_Product_Simple extends WC_Product_Simple implements P24_MC_Product_Common_Interface {
use P24_Product_Trait;
/**
* P24_Product_Simple constructor.
*
* @param int $product Id of product.
*/
public function __construct( $product = 0 ) {
$this->populate_internal_data();
parent::__construct( $product );
}
}