| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace Jet_Form_Builder\Migrations\Rest_Api; |
| 5 |
|
| 6 |
|
| 7 |
use Jet_Form_Builder\Rest_Api\Rest_Api_Controller_Base; |
| 8 |
use Jet_Form_Builder\Rest_Api\Rest_Api_Endpoint_Base; |
| 9 |
|
| 10 |
class Controller extends Rest_Api_Controller_Base { |
| 11 |
|
| 12 |
/** |
| 13 |
* @return Rest_Api_Endpoint_Base[] |
| 14 |
*/ |
| 15 |
public function routes(): array { |
| 16 |
return array( |
| 17 |
new Install_Migrations_Endpoint(), |
| 18 |
); |
| 19 |
} |
| 20 |
} |