Added stub method

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-04-16 12:30:02 -07:00
parent 0210ecde88
commit 8183b8deba

View file

@ -112,4 +112,19 @@ class LicenseCheckinController extends Controller
// Redirect to the license page with error
return redirect()->route('licenses.index')->with('error', trans('admin/licenses/message.checkin.error'));
}
/**
* Bulk checkin all license seats
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see LicenseCheckinController::create() method that provides the form view
* @since [v6.1.1]
* @return \Illuminate\Http\RedirectResponse
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function bulkCheckin() {
}
}