Apply fixes from StyleCI

This commit is contained in:
James Brooks 2019-07-12 12:43:13 +00:00 committed by StyleCI Bot
parent 7f53a7e9df
commit 3187fbc24f
2 changed files with 1 additions and 2 deletions

View File

@ -90,7 +90,7 @@ class SubscribeController extends Controller
}
// Send the subscriber a link to manage their subscription.
$subscription->notify(new ManageSubscriptionNotification);
$subscription->notify(new ManageSubscriptionNotification());
return redirect()->back()->withSuccess(
sprintf('%s %s', trans('dashboard.notifications.awesome'),

View File

@ -12,7 +12,6 @@
namespace CachetHQ\Cachet\Notifications\Subscriber;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\URL;