| @@ -11,7 +11,7 @@ | ||
| 11 | 11 | protected $namespace = 'Modules\Notification\Http\Controllers'; | 
| 12 | 12 | |
| 13 | 13 | /** | 
| 14 | - * @return string | |
| 14 | + * @return boolean | |
| 15 | 15 | */ | 
| 16 | 16 | protected function getFrontendRoute() | 
| 17 | 17 |      { | 
| @@ -11,7 +11,7 @@ | ||
| 11 | 11 | */ | 
| 12 | 12 | public function up() | 
| 13 | 13 |      { | 
| 14 | -        Schema::create('notification__notifications', function (Blueprint $table) { | |
| 14 | +        Schema::create('notification__notifications', function(Blueprint $table) { | |
| 15 | 15 |              $table->increments('id'); | 
| 16 | 16 |              $table->integer('user_id')->unsigned(); | 
| 17 | 17 |              $table->string('type')->nullable(); | 
| @@ -16,8 +16,8 @@ | ||
| 16 | 16 | class Notification extends Model | 
| 17 | 17 |  { | 
| 18 | 18 | protected $table = 'notification__notifications'; | 
| 19 | - protected $fillable = ['user_id', 'type', 'message', 'icon_class', 'link', 'is_read', 'title']; | |
| 20 | - protected $appends = ['time_ago']; | |
| 19 | + protected $fillable = [ 'user_id', 'type', 'message', 'icon_class', 'link', 'is_read', 'title' ]; | |
| 20 | + protected $appends = [ 'time_ago' ]; | |
| 21 | 21 | |
| 22 | 22 | /** | 
| 23 | 23 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo | 
| @@ -25,6 +25,6 @@ | ||
| 25 | 25 | */ | 
| 26 | 26 | public function broadcastOn() | 
| 27 | 27 |      { | 
| 28 | - return ['asgardcms.notifications.' . $this->notification->user_id]; | |
| 28 | + return [ 'asgardcms.notifications.' . $this->notification->user_id ]; | |
| 29 | 29 | } | 
| 30 | 30 | } | 
| @@ -41,7 +41,7 @@ | ||
| 41 | 41 |      { | 
| 42 | 42 | $this->notification->destroy($notification); | 
| 43 | 43 | |
| 44 | -        flash(trans('core::core.messages.resource deleted', ['name' => 'Notification'])); | |
| 44 | +        flash(trans('core::core.messages.resource deleted', [ 'name' => 'Notification' ])); | |
| 45 | 45 | |
| 46 | 46 |          return redirect()->route('admin.notification.notification.index'); | 
| 47 | 47 | } | 
| @@ -1,3 +1,3 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -post('notification/mark-read', ['as' => 'api.notification.read', 'uses' => 'NotificationsController@markAsRead']); | |
| 3 | +post('notification/mark-read', [ 'as' => 'api.notification.read', 'uses' => 'NotificationsController@markAsRead' ]); | |
| @@ -1,8 +1,8 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -$router->group(['prefix' => '/notification'], function () { | |
| 4 | -    get('notifications', ['as' => 'admin.notification.notification.index', 'uses' => 'NotificationsController@index']); | |
| 5 | -    get('notifications/markAllAsRead', ['as' => 'admin.notification.notification.markAllAsRead', 'uses' => 'NotificationsController@markAllAsRead']); | |
| 6 | -    delete('notifications/destroyAll', ['as' => 'admin.notification.notification.destroyAll', 'uses' => 'NotificationsController@destroyAll']); | |
| 7 | -    delete('notifications/{notification}', ['as' => 'admin.notification.notification.destroy', 'uses' => 'NotificationsController@destroy']); | |
| 3 | +$router->group([ 'prefix' => '/notification' ], function() { | |
| 4 | +    get('notifications', [ 'as' => 'admin.notification.notification.index', 'uses' => 'NotificationsController@index' ]); | |
| 5 | +    get('notifications/markAllAsRead', [ 'as' => 'admin.notification.notification.markAllAsRead', 'uses' => 'NotificationsController@markAllAsRead' ]); | |
| 6 | +    delete('notifications/destroyAll', [ 'as' => 'admin.notification.notification.destroyAll', 'uses' => 'NotificationsController@destroyAll' ]); | |
| 7 | +    delete('notifications/{notification}', [ 'as' => 'admin.notification.notification.destroy', 'uses' => 'NotificationsController@destroy' ]); | |
| 8 | 8 | }); | 
| @@ -41,10 +41,10 @@ discard block | ||
| 41 | 41 | |
| 42 | 42 | private function registerBindings() | 
| 43 | 43 |      { | 
| 44 | -        $this->app->bind(NotificationRepository::class, function () { | |
| 44 | +        $this->app->bind(NotificationRepository::class, function() { | |
| 45 | 45 | $repository = new EloquentNotificationRepository(new Notification()); | 
| 46 | 46 | |
| 47 | -                if (! config('app.cache')) { | |
| 47 | +                if (!config('app.cache')) { | |
| 48 | 48 | return $repository; | 
| 49 | 49 | } | 
| 50 | 50 | |
| @@ -52,8 +52,8 @@ discard block | ||
| 52 | 52 | } | 
| 53 | 53 | ); | 
| 54 | 54 | |
| 55 | -        $this->app->bind(\Modules\Notification\Services\Notification::class, function ($app) { | |
| 56 | - return new AsgardNotification($app[NotificationRepository::class], $app[Authentication::class]); | |
| 55 | +        $this->app->bind(\Modules\Notification\Services\Notification::class, function($app) { | |
| 56 | + return new AsgardNotification($app[ NotificationRepository::class ], $app[ Authentication::class ]); | |
| 57 | 57 | }); | 
| 58 | 58 | } | 
| 59 | 59 | |
| @@ -21,7 +21,7 @@ discard block | ||
| 21 | 21 | return $this->cache | 
| 22 | 22 | ->tags($this->entityName, 'global') | 
| 23 | 23 |              ->remember("{$this->locale}.{$this->entityName}.latestForUser.{$userId}", $this->cacheTime, | 
| 24 | -                function () use ($userId) { | |
| 24 | +                function() use ($userId) { | |
| 25 | 25 | return $this->repository->latestForUser($userId); | 
| 26 | 26 | } | 
| 27 | 27 | ); | 
| @@ -49,7 +49,7 @@ discard block | ||
| 49 | 49 | return $this->cache | 
| 50 | 50 | ->tags($this->entityName, 'global') | 
| 51 | 51 |              ->remember("{$this->locale}.{$this->entityName}.allForUser.{$userId}", $this->cacheTime, | 
| 52 | -                function () use ($userId) { | |
| 52 | +                function() use ($userId) { | |
| 53 | 53 | return $this->repository->allForUser($userId); | 
| 54 | 54 | } | 
| 55 | 55 | ); | 
| @@ -65,7 +65,7 @@ discard block | ||
| 65 | 65 | return $this->cache | 
| 66 | 66 | ->tags($this->entityName, 'global') | 
| 67 | 67 |              ->remember("{$this->locale}.{$this->entityName}.allUnreadForUser.{$userId}", $this->cacheTime, | 
| 68 | -                function () use ($userId) { | |
| 68 | +                function() use ($userId) { | |
| 69 | 69 | return $this->repository->allUnreadForUser($userId); | 
| 70 | 70 | } | 
| 71 | 71 | ); |