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