composer update && add warning text
This commit is contained in:
@@ -4,7 +4,6 @@ namespace App\Modules\SberPaymentOrder\Nova\Resources\Concerns;
|
||||
|
||||
use Illuminate\Auth\Access\AuthorizationException;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Gate;
|
||||
|
||||
trait NovaSberPaymentOrderAuth
|
||||
{
|
||||
@@ -21,7 +20,7 @@ trait NovaSberPaymentOrderAuth
|
||||
return;
|
||||
}
|
||||
|
||||
throw new AuthorizationException();
|
||||
throw new AuthorizationException;
|
||||
}
|
||||
|
||||
/** Edit button */
|
||||
@@ -49,7 +48,7 @@ trait NovaSberPaymentOrderAuth
|
||||
return;
|
||||
}
|
||||
|
||||
throw new AuthorizationException();
|
||||
throw new AuthorizationException;
|
||||
}
|
||||
|
||||
/** Delete button */
|
||||
@@ -73,7 +72,7 @@ trait NovaSberPaymentOrderAuth
|
||||
return;
|
||||
}
|
||||
|
||||
throw new AuthorizationException();
|
||||
throw new AuthorizationException;
|
||||
}
|
||||
|
||||
/** Force delete */
|
||||
|
||||
Reference in New Issue
Block a user