| 1 | <?php |
||
| 8 | class PendingMultiStepRegister |
||
| 9 | { |
||
| 10 | protected $uri; |
||
| 11 | protected $controller; |
||
| 12 | protected $steps; |
||
| 13 | protected $name; |
||
| 14 | protected $only = []; |
||
| 15 | protected $naming = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * PendingMultiStepRegister constructor. |
||
| 19 | * |
||
| 20 | * @param $uri |
||
| 21 | * @param $controller |
||
| 22 | */ |
||
| 23 | public function __construct($uri, $controller) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param $steps |
||
| 31 | * |
||
| 32 | * @return $this |
||
| 33 | */ |
||
| 34 | public function steps($steps) |
||
| 40 | |||
| 41 | public function name($name) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param $only |
||
| 50 | * |
||
| 51 | * @return $this |
||
| 52 | */ |
||
| 53 | public function only($only) |
||
| 59 | |||
| 60 | public function __destruct() |
||
| 76 | } |
||
| 77 |