|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace Jet_Form_Builder\Blocks\Ssr_Validation; |
|
5
|
|
|
6
|
|
|
7
|
use Jet_Form_Builder\Rest_Api\Rest_Api_Controller_Base; |
|
8
|
|
|
9
|
class Rest_Controller extends Rest_Api_Controller_Base { |
|
10
|
|
|
11
|
public function routes(): array { |
|
12
|
return array( |
|
13
|
new Rest_Validation_Endpoint(), |
|
14
|
); |
|
15
|
} |
|
16
|
}
|