|
1
|
<?php |
|
2
|
|
|
3
|
namespace WCML\Compatibility\PerProductShipping; |
|
4
|
|
|
5
|
use WCML\Compatibility\ComponentFactory; |
|
6
|
use WCML_Per_Product_Shipping; |
|
7
|
|
|
8
|
class Factory extends ComponentFactory { |
|
9
|
|
|
10
|
public function create() { |
|
11
|
return new WCML_Per_Product_Shipping(); |
|
12
|
} |
|
13
|
} |
|
14
|
|