Completed
Push — master ( e532fe...9aeefa )
by Xu
70:18 queued 30:12
created
src/notifications/rest/controllers/NotificationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     public function actionUnreadNotifications()
72 72
     {
73
-        $total = Notification::getDb()->cache(function ($db) {
73
+        $total = Notification::getDb()->cache(function($db) {
74 74
             return Notification::find()->where(['receiver_id' => Yii::$app->user->id, 'is_read' => false])->count();
75 75
         }, 60);
76 76
         return ['total' => $total];
Please login to merge, or discard this patch.
src/notifications/migrations/m180410_092555_create_notification_table.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -24,19 +24,19 @@
 block discarded – undo
24 24
         }
25 25
         // https://segmentfault.com/q/1010000000672529/a-1020000000679702
26 26
         $this->createTable($this->tableName, [
27
-            'id' => $this->bigPrimaryKey()->unsigned()->comment('Id'),//通知ID
28
-            'verb' => $this->string(32)->comment('Verb'),//活动图片
29
-            'template' => $this->string()->comment('Template'),//通知类型
30
-            'channel' => $this->string(64)->comment('Template'),//通知类型
31
-            'is_read' => $this->boolean()->defaultValue(false)->comment('Read'),//是否已读
32
-            'is_pending' => $this->boolean()->defaultValue(false)->comment('Pending'),//是否已经推送
33
-            'sender_id' => $this->integer()->unsigned()->comment('Sender Id'),//发送者ID
34
-            'sender_class' => $this->string()->comment('Sender Class'),//发送者模型
35
-            'receiver_id' => $this->unsignedInteger()->comment('Receiver Id'),//接收器
36
-            'entity_id' => $this->unsignedInteger()->comment('Entity'),//任务对象
37
-            'source_id' => $this->unsignedInteger()->comment('Source'),//原有任务对象
38
-            'target_id' => $this->unsignedInteger()->comment('Target'),//目标对象
39
-            'publish_at' => $this->integer()->unsigned()->notNull()->comment('Publish At'),//发送时间
27
+            'id' => $this->bigPrimaryKey()->unsigned()->comment('Id'), //通知ID
28
+            'verb' => $this->string(32)->comment('Verb'), //活动图片
29
+            'template' => $this->string()->comment('Template'), //通知类型
30
+            'channel' => $this->string(64)->comment('Template'), //通知类型
31
+            'is_read' => $this->boolean()->defaultValue(false)->comment('Read'), //是否已读
32
+            'is_pending' => $this->boolean()->defaultValue(false)->comment('Pending'), //是否已经推送
33
+            'sender_id' => $this->integer()->unsigned()->comment('Sender Id'), //发送者ID
34
+            'sender_class' => $this->string()->comment('Sender Class'), //发送者模型
35
+            'receiver_id' => $this->unsignedInteger()->comment('Receiver Id'), //接收器
36
+            'entity_id' => $this->unsignedInteger()->comment('Entity'), //任务对象
37
+            'source_id' => $this->unsignedInteger()->comment('Source'), //原有任务对象
38
+            'target_id' => $this->unsignedInteger()->comment('Target'), //目标对象
39
+            'publish_at' => $this->integer()->unsigned()->notNull()->comment('Publish At'), //发送时间
40 40
         ], $tableOptions);
41 41
 
42 42
         $this->createIndex('notification_index', $this->tableName, ['sender_id', 'sender_class']);
Please login to merge, or discard this patch.