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