Test Setup Failed
Push — master ( ab9385...520e42 )
by Xu
37:19
created
src/rest/models/User.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,16 +26,16 @@
 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
-            "created_datetime" => function () {
32
+            "created_datetime" => function() {
33 33
                 return gmdate(DATE_ISO8601, $this->created_at);
34 34
             },
35
-            "updated_datetime" => function () {
35
+            "updated_datetime" => function() {
36 36
                 return gmdate(DATE_ISO8601, $this->updated_at);
37 37
             },
38
-            'blocked_datetime' => function () {
38
+            'blocked_datetime' => function() {
39 39
                 return gmdate(DATE_ISO8601, $this->blocked_at);
40 40
             }
41 41
         ];
Please login to merge, or discard this patch.