@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('oauth_personal_access_clients', function (Blueprint $table) { |
|
| 16 | + Schema::create('oauth_personal_access_clients', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('client_id')->index(); |
| 19 | 19 | $table->timestamps(); |
@@ -12,15 +12,15 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('permissions', function (Blueprint $table) { |
|
| 15 | + Schema::create('permissions', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | - $table->string('name',100); |
|
| 18 | - $table->string('model',100); |
|
| 17 | + $table->string('name', 100); |
|
| 18 | + $table->string('model', 100); |
|
| 19 | 19 | $table->softDeletes(); |
| 20 | 20 | $table->timestamps(); |
| 21 | 21 | $table->unique(array('name', 'model')); |
| 22 | 22 | }); |
| 23 | - Schema::create('groups_permissions', function (Blueprint $table) { |
|
| 23 | + Schema::create('groups_permissions', function(Blueprint $table) { |
|
| 24 | 24 | $table->increments('id'); |
| 25 | 25 | $table->integer('group_id'); |
| 26 | 26 | $table->integer('permission_id'); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('oauth_auth_codes', function (Blueprint $table) { |
|
| 16 | + Schema::create('oauth_auth_codes', function(Blueprint $table) { |
|
| 17 | 17 | $table->string('id', 100)->primary(); |
| 18 | 18 | $table->integer('user_id'); |
| 19 | 19 | $table->integer('client_id'); |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | use Illuminate\Notifications\DatabaseNotification; |
| 4 | 4 | use Illuminate\Database\Eloquent\SoftDeletes; |
| 5 | 5 | |
| 6 | -class Notification extends DatabaseNotification{ |
|
| 6 | +class Notification extends DatabaseNotification { |
|
| 7 | 7 | |
| 8 | 8 | public function getCreatedAtAttribute($value) |
| 9 | 9 | { |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | Route::group([ |
| 55 | 55 | 'middleware' => 'web', |
| 56 | 56 | 'namespace' => $this->namespace, |
| 57 | - ], function ($router) { |
|
| 57 | + ], function($router) { |
|
| 58 | 58 | require module_path('notifications', 'Routes/web.php'); |
| 59 | 59 | }); |
| 60 | 60 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | 'middleware' => 'api', |
| 73 | 73 | 'namespace' => $this->namespace, |
| 74 | 74 | 'prefix' => 'api', |
| 75 | - ], function ($router) { |
|
| 75 | + ], function($router) { |
|
| 76 | 76 | require module_path('notifications', 'Routes/api.php'); |
| 77 | 77 | }); |
| 78 | 78 | } |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | */ |
| 71 | 71 | public function notify($users, $notification, $notificationData = false) |
| 72 | 72 | { |
| 73 | - $notification = 'App\Modules\Notifications\Notifications\\' . $notification; |
|
| 73 | + $notification = 'App\Modules\Notifications\Notifications\\'.$notification; |
|
| 74 | 74 | \Notification::send($users, new $notification($notificationData)); |
| 75 | 75 | } |
| 76 | 76 | } |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | $notificationBuilder = new PayloadNotificationBuilder($title); |
| 50 | 50 | $dataBuilder = new PayloadDataBuilder(); |
| 51 | 51 | |
| 52 | - $optionBuilder->setTimeToLive(60*20); |
|
| 52 | + $optionBuilder->setTimeToLive(60 * 20); |
|
| 53 | 53 | $notificationBuilder->setBody($message); |
| 54 | 54 | $dataBuilder->addData($data); |
| 55 | 55 | |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | use Illuminate\Database\Eloquent\Model; |
| 4 | 4 | use Illuminate\Database\Eloquent\SoftDeletes; |
| 5 | 5 | |
| 6 | -class PushNotificationDevice extends Model{ |
|
| 6 | +class PushNotificationDevice extends Model { |
|
| 7 | 7 | |
| 8 | 8 | use SoftDeletes; |
| 9 | 9 | protected $table = 'push_notifications_devices'; |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * to preform actions like (add, edit ... etc). |
| 13 | 13 | * @var string |
| 14 | 14 | */ |
| 15 | - protected $model = 'pushNotificationDevices'; |
|
| 15 | + protected $model = 'pushNotificationDevices'; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * List of all route actions that the base api controller |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * to check before add. |
| 27 | 27 | * @var array |
| 28 | 28 | */ |
| 29 | - protected $validationRules = [ |
|
| 29 | + protected $validationRules = [ |
|
| 30 | 30 | 'device_token' => 'required|string|max:255', |
| 31 | 31 | 'user_id' => 'required|exists:users,id' |
| 32 | 32 | ]; |