GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( eb7034...336670 )
by
unknown
10:15
created
core/tests/User/UserHandlerTest.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $hasher = $this->getHasher();
35 35
         $hasher->shouldReceive('make')->once()->with('secret')->andReturn('encrypted');
36 36
         /** @var Mockery\MockInterface $handler */
37
-        $handler = $this->getHandlerMock(null,null,null,null,null,null,$hasher);
37
+        $handler = $this->getHandlerMock(null, null, null, null, null, null, $hasher);
38 38
         $handler->shouldReceive('validateForCreate')->withAnyArgs()->andReturn(true);
39 39
 
40 40
         $data = [
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $hasher = $this->getHasher();
60 60
         $hasher->shouldReceive('make')->once()->with('secret')->andReturn('encrypted');
61 61
         /** @var Mockery\MockInterface $handler */
62
-        $handler = $this->getHandlerMock(null,null,null,null,null,null,$hasher);
62
+        $handler = $this->getHandlerMock(null, null, null, null, null, null, $hasher);
63 63
         $handler->shouldReceive('validateForCreate')->withAnyArgs()->andReturn(true);
64 64
 
65 65
         $data = [
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $hasher = $this->getHasher();
98 98
         $hasher->shouldReceive('make')->once()->with('secret')->andReturn('encrypted');
99 99
         /** @var Mockery\MockInterface $handler */
100
-        $handler = $this->getHandlerMock(null,null,null,null,null,null,$hasher);
100
+        $handler = $this->getHandlerMock(null, null, null, null, null, null, $hasher);
101 101
         $handler->shouldReceive('validateForCreate')->withAnyArgs()->andReturn(true);
102 102
 
103 103
         $data = [
@@ -135,23 +135,23 @@  discard block
 block discarded – undo
135 135
         $hasher = $this->getHasher();
136 136
         $hasher->shouldReceive('make')->once()->with('secret')->andReturn('encrypted');
137 137
         /** @var Mockery\MockInterface $handler */
138
-        $handler = $this->getHandlerMock(null,null,null,null,null,null,$hasher);
138
+        $handler = $this->getHandlerMock(null, null, null, null, null, null, $hasher);
139 139
         $handler->shouldReceive('validateForCreate')->withAnyArgs()->andReturn(true);
140 140
 
141 141
         $data = [
142 142
             'displayName' => 'foo',
143 143
             'password' => 'secret',
144
-            'groupId' => ['bar','baz']
144
+            'groupId' => ['bar', 'baz']
145 145
         ];
146 146
 
147 147
         /** @var Mockery\MockInterface $users */
148 148
         $users = $handler->users();
149 149
         $user = $this->makeUser();
150
-        $user->shouldReceive('joinGroups')->with(['bar','baz'])->andReturnSelf();
150
+        $user->shouldReceive('joinGroups')->with(['bar', 'baz'])->andReturnSelf();
151 151
 
152 152
         /** @var Mockery\MockInterface $groups */
153 153
         $groups = $handler->groups();
154
-        $groups->shouldReceive('whereIn')->once()->with('id', ['bar','baz'])->andReturnSelf();
154
+        $groups->shouldReceive('whereIn')->once()->with('id', ['bar', 'baz'])->andReturnSelf();
155 155
         $groups->shouldReceive('get')->once()->andReturn([]);
156 156
 
157 157
         $users->shouldReceive('create')
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         $hasher = $this->getHasher();
169 169
         $hasher->shouldReceive('make')->once()->with('secret')->andReturn('encrypted');
170 170
         /** @var Mockery\MockInterface $handler */
171
-        $handler = $this->getHandlerMock(null,null,null,null,null,null,$hasher);
171
+        $handler = $this->getHandlerMock(null, null, null, null, null, null, $hasher);
172 172
         $handler->shouldReceive('validateForCreate')->withAnyArgs()->andReturn(true);
173 173
 
174 174
         $data = [
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 
425 425
         /** @var Mockery\MockInterface $accounts */
426 426
         $accounts = $handler->accounts();
427
-        $accounts->shouldReceive('where')->once()->with(['accountId'=>'foo','provider'=>'foo'])->andReturnSelf();
427
+        $accounts->shouldReceive('where')->once()->with(['accountId'=>'foo', 'provider'=>'foo'])->andReturnSelf();
428 428
         $accounts->shouldReceive('first')->once()->andReturn(true);
429 429
 
430 430
 
Please login to merge, or discard this patch.
resources/FieldSkins/Boolean/DefaultSkin.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
     {
59 59
         $config = $this->config;
60 60
         $boolean = '';
61
-        if (isset($args[$config->get('id') . 'Boolean'])) {
62
-            $boolean = $args[$config->get('id') . 'Boolean'];
61
+        if (isset($args[$config->get('id').'Boolean'])) {
62
+            $boolean = $args[$config->get('id').'Boolean'];
63 63
         }
64 64
 
65 65
         return View::make('dynamicField/boolean/default/edit', [
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
     {
80 80
         $config = $this->config;
81 81
         $boolean = '';
82
-        if (isset($args[$config->get('id') . 'Boolean'])) {
83
-            $boolean = $args[$config->get('id') . 'Boolean'];
82
+        if (isset($args[$config->get('id').'Boolean'])) {
83
+            $boolean = $args[$config->get('id').'Boolean'];
84 84
         }
85 85
 
86 86
         return View::make('dynamicField/boolean/default/show', [
Please login to merge, or discard this patch.
resources/FieldSkins/Number/DefaultSkin.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     public function settings(ConfigEntity $config = null)
26 26
     {
27
-        return View::make('dynamicField/number/default/createSkin', ['config' => $config,])->render();
27
+        return View::make('dynamicField/number/default/createSkin', ['config' => $config, ])->render();
28 28
     }
29 29
 
30 30
     public function create(array $inputs)
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
     {
40 40
         $config = $this->config;
41 41
         $num = '';
42
-        if (isset($args[$config->get('id') . 'Num'])) {
43
-            $num = $args[$config->get('id') . 'Num'];
42
+        if (isset($args[$config->get('id').'Num'])) {
43
+            $num = $args[$config->get('id').'Num'];
44 44
         }
45 45
 
46 46
 
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $config = $this->config;
56 56
         $num = '';
57
-        if (isset($args[$config->get('id') . 'Num'])) {
58
-            $num = $args[$config->get('id') . 'Num'];
57
+        if (isset($args[$config->get('id').'Num'])) {
58
+            $num = $args[$config->get('id').'Num'];
59 59
         }
60 60
 
61 61
         return View::make('dynamicField/number/default/show', [
Please login to merge, or discard this patch.
resources/FieldSkins/Category/DefaultSkin.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function settings(ConfigEntity $config = null, $view = 'dynamicField/category/default/createSkin')
34 34
     {
35
-        return View::make($view, ['config' => $config,])->render();
35
+        return View::make($view, ['config' => $config, ])->render();
36 36
     }
37 37
 
38 38
     /**
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
 
66 66
         $itemId = '';
67 67
         $item = '';
68
-        if (isset($args[$config->get('id') . 'ItemId'])) {
69
-            $itemId = $args[$config->get('id') . 'ItemId'];
68
+        if (isset($args[$config->get('id').'ItemId'])) {
69
+            $itemId = $args[$config->get('id').'ItemId'];
70 70
             $item = CategoryItem::find($itemId);
71 71
         }
72 72
 
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
     {
88 88
         $config = $this->config;
89 89
         $item = '';
90
-        if (isset($args[$config->get('id') . 'ItemId'])) {
91
-            $itemId = $args[$config->get('id') . 'ItemId'];
90
+        if (isset($args[$config->get('id').'ItemId'])) {
91
+            $itemId = $args[$config->get('id').'ItemId'];
92 92
             $item = CategoryItem::find($itemId);
93 93
         }
94 94
 
Please login to merge, or discard this patch.
resources/FieldSkins/Category/BeforeTitle.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function settings(ConfigEntity $config = null)
29 29
     {
30
-        return View::make('dynamicField/category/beforeTitle/createSkin', ['config' => $config,])->render();
30
+        return View::make('dynamicField/category/beforeTitle/createSkin', ['config' => $config, ])->render();
31 31
     }
32 32
 
33 33
     public function create(array $inputs)
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
         $items = Category::progenitors($category);
50 50
 
51 51
         $itemId = '';
52
-        if (isset($args[$config->get('id') . 'ItemId'])) {
53
-            $itemId = $args[$config->get('id') . 'ItemId'];
52
+        if (isset($args[$config->get('id').'ItemId'])) {
53
+            $itemId = $args[$config->get('id').'ItemId'];
54 54
         }
55 55
 
56 56
         return View::make('dynamicField/category/beforeTitle/edit', [
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
     {
65 65
         $config = $this->config;
66 66
         $item = '';
67
-        if (isset($args[$config->get('id') . 'ItemId'])) {
68
-            $itemId = $args[$config->get('id') . 'ItemId'];
67
+        if (isset($args[$config->get('id').'ItemId'])) {
68
+            $itemId = $args[$config->get('id').'ItemId'];
69 69
             $item = Category::getItem($itemId);
70 70
         }
71 71
 
Please login to merge, or discard this patch.
resources/FieldSkins/Category/AfterTitle.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function settings(ConfigEntity $config = null)
29 29
     {
30
-        return View::make('dynamicField/category/afterTitle/createSkin', ['config' => $config,])->render();
30
+        return View::make('dynamicField/category/afterTitle/createSkin', ['config' => $config, ])->render();
31 31
     }
32 32
 
33 33
     public function create(array $inputs)
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
         $items = Category::progenitors($category);
50 50
 
51 51
         $itemId = '';
52
-        if (isset($args[$config->get('id') . 'ItemId'])) {
53
-            $itemId = $args[$config->get('id') . 'ItemId'];
52
+        if (isset($args[$config->get('id').'ItemId'])) {
53
+            $itemId = $args[$config->get('id').'ItemId'];
54 54
         }
55 55
 
56 56
         return View::make('dynamicField/category/afterTitle/edit', [
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
     {
65 65
         $config = $this->config;
66 66
         $item = '';
67
-        if (isset($args[$config->get('id') . 'ItemId'])) {
68
-            $itemId = $args[$config->get('id') . 'ItemId'];
67
+        if (isset($args[$config->get('id').'ItemId'])) {
68
+            $itemId = $args[$config->get('id').'ItemId'];
69 69
             $item = Category::getItem($itemId);
70 70
         }
71 71
 
Please login to merge, or discard this patch.
resources/FieldSkins/Text/DefaultSkin.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
     {
60 60
         $config = $this->config;
61 61
         $text = '';
62
-        if (isset($args[$config->get('id') . 'Text'])) {
63
-            $text = $args[$config->get('id') . 'Text'];
62
+        if (isset($args[$config->get('id').'Text'])) {
63
+            $text = $args[$config->get('id').'Text'];
64 64
         }
65 65
 
66 66
         return View::make('dynamicField/text/default/edit', [
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $config = $this->config;
82 82
         $text = '';
83
-        if (isset($args[$config->get('id') . 'Text'])) {
84
-            $text = $args[$config->get('id') . 'Text'];
83
+        if (isset($args[$config->get('id').'Text'])) {
84
+            $text = $args[$config->get('id').'Text'];
85 85
         }
86 86
 
87 87
         return View::make('dynamicField/text/default/show', [
Please login to merge, or discard this patch.
resources/UIObjects/Menu/MenuList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 
53 53
         $headString = [];
54 54
         $headString[] = "<ul>";
55
-        $headString[] = "<li data-jstree='{$treeOption}' id='{$menu->id}' node='{$menu->id}'>" . $menu->title;
55
+        $headString[] = "<li data-jstree='{$treeOption}' id='{$menu->id}' node='{$menu->id}'>".$menu->title;
56 56
         $headString[] = "<div class='action'>";
57 57
 
58 58
         $headString[] = sprintf('<a href="/manage/menu/selectItemType/%s" onclick="javascript:appendItem(\'%s\')"><i class="fa fa-plus"></i></a>',
Please login to merge, or discard this patch.
resources/UIObjects/Form/FormCheckbox.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,13 +28,13 @@
 block discarded – undo
28 28
         $nameGlobal = array_get($args, 'name');
29 29
 
30 30
         $labelText = array_get($args, 'label');
31
-        if($labelText !== null) {
31
+        if ($labelText !== null) {
32 32
             $label->removeClass('hidden')->html($labelText);
33 33
         }
34 34
 
35 35
         // checkbox가 따로 있을 경우
36
-        if($checkboxes !== null) {
37
-            foreach((array) $checkboxes as $arg){
36
+        if ($checkboxes !== null) {
37
+            foreach ((array) $checkboxes as $arg) {
38 38
                 $checkboxObj = PhpQuery::pq(
39 39
                     "<label class=\"checkbox-inline\"><input type=\"checkbox\"><span></span></label>"
40 40
                 );
Please login to merge, or discard this patch.