9 lines
227 B
PHP
9 lines
227 B
PHP
<?php
|
|
use ProVM\Projects\Common\Controller\Web\Create;
|
|
|
|
$app->group('/create', function($app) {
|
|
$app->post('/2', [Create::class, 'step2']);
|
|
$app->post('/3', [Create::class, 'step3']);
|
|
$app->get('[/]', Create::class);
|
|
});
|