Completed
Push — master ( 767873...68ec54 )
by Xu
38:03
created
src/rest/models/User.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,17 +26,17 @@
 block discarded – undo
26 26
         return [
27 27
             'id',
28 28
             'nickname',
29
-            'faceUrl' => function () {
29
+            'faceUrl' => function() {
30 30
                 return $this->getAvatar(AvatarHelper::AVATAR_MIDDLE);
31 31
             },
32 32
             'identified',
33
-            "created_datetime" => function () {
33
+            "created_datetime" => function() {
34 34
                 return gmdate(DATE_ISO8601, $this->created_at);
35 35
             },
36
-            "updated_datetime" => function () {
36
+            "updated_datetime" => function() {
37 37
                 return gmdate(DATE_ISO8601, $this->updated_at);
38 38
             },
39
-            'blocked_datetime' => function () {
39
+            'blocked_datetime' => function() {
40 40
                 return gmdate(DATE_ISO8601, $this->blocked_at);
41 41
             }
42 42
         ];
Please login to merge, or discard this patch.