1: <?php
2:
3: /**
4: * @copyright Copyright (c) 2009-2022 ThemeCatcher (https://www.themecatcher.net)
5: */
6: class Quform_ViewFactory
7: {
8: public function create($template, array $data = array())
9: {
10: return new Quform_View($template, $data);
11: }
12: }
13: