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