| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class RegisterController extends Controller |
||
| 10 | { |
||
| 11 | public function __construct() |
||
| 14 | } |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Show the form for creating a new resource. |
||
| 18 | * |
||
| 19 | * @return \Illuminate\Http\Response |
||
| 20 | */ |
||
| 21 | public function create() |
||
| 22 | { |
||
| 23 | return view('register'); |
||
|
|
|||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Store a newly created resource in storage. |
||
| 28 | * |
||
| 29 | * @param \Illuminate\Http\Request $request |
||
| 30 | * @param RegisterForm $form |
||
| 31 | * @return \Illuminate\Http\Response |
||
| 32 | */ |
||
| 33 | public function store(Request $request, RegisterForm $form) |
||
| 39 | } |
||
| 40 | |||
| 42 |