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