mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
24 lines
432 B
PHP
24 lines
432 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
|
|
class RegisterController extends Controller
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
$this->middleware('guest');
|
|
}
|
|
|
|
public function showRegistrationForm() {
|
|
abort(404,'Page not found');
|
|
}
|
|
|
|
public function register() {
|
|
abort(404,'Page not found');
|
|
}
|
|
}
|