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 ( 1a1e57...ace484 )
by
unknown
18:25
created
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.
resources/UIObjects/Form/FormSelect.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
                     foreach ($arg as $value => $option) {
38 38
                         if (is_array($option) === false) {
39 39
                             $text = $option;
40
-                            if(is_string($value) === false) {
40
+                            if (is_string($value) === false) {
41 41
                                 $value = $option;
42 42
                             }
43 43
                             $selected = '';
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                     $labelEl->attr('for', $arg);
60 60
                     // pass to default
61 61
                 default:
62
-                    if(is_string($arg)){
62
+                    if (is_string($arg)) {
63 63
                         $selectEl->attr($key, $arg);
64 64
                     }
65 65
                     break;
Please login to merge, or discard this patch.
resources/UIObjects/Permission/Permission.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,8 +114,8 @@
 block discarded – undo
114 114
         $userRepo = app('xe.users');
115 115
 
116 116
         $groups = $groupRepo->findMany($grant['group']);
117
-        $users = $userRepo->findMany($grant['user'], ['id','displayName']);
118
-        $excepts = $userRepo->findMany($grant['except'], ['id','displayName']);
117
+        $users = $userRepo->findMany($grant['user'], ['id', 'displayName']);
118
+        $excepts = $userRepo->findMany($grant['except'], ['id', 'displayName']);
119 119
 
120 120
         $permissionValueArray['rating'] = $grant['rating'];
121 121
         $permissionValueArray['group'] = $groups;
Please login to merge, or discard this patch.
resources/FieldTypes/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function getSettingsView(ConfigEntity $config = null)
70 70
     {
71
-        return View::make('dynamicField/number/createType', ['config' => $config,])->render();
71
+        return View::make('dynamicField/number/createType', ['config' => $config, ])->render();
72 72
     }
73 73
 
74 74
     /**
Please login to merge, or discard this patch.