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