mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 00:01:21 +00:00
Fix return type in edit function
This commit is contained in:
@@ -842,7 +842,7 @@ class NameFixer
|
||||
*
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function updateRelease($release, $name, $method, $echo, $type, int $nameStatus, bool $show, int $preId = 0): void
|
||||
public function updateRelease($release, $name, $method, $echo, $type, $nameStatus, $show, $preId = 0): void
|
||||
{
|
||||
if (\is_array($release)) {
|
||||
$release = (object) $release;
|
||||
|
||||
@@ -100,11 +100,11 @@ class ProfileController extends BasePageController
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|void
|
||||
* @return \Illuminate\Http\RedirectResponse|void
|
||||
*
|
||||
* @throws \Exception
|
||||
* @throws \Jrean\UserVerification\Exceptions\ModelNotCompliantException
|
||||
*/
|
||||
public function edit(Request $request): RedirectResponse
|
||||
public function edit(Request $request)
|
||||
{
|
||||
$this->setPreferences();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user