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.
Passed
Push — develop ( 3ec2b8...2aad22 )
by Toby
20:42 queued 13s
created
src/Traits/Tags/GroupTagTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function fullReference(): string
33 33
     {
34
-        return $this->category()->reference() . '.' . $this->reference();
34
+        return $this->category()->reference().'.'.$this->reference();
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
src/Http/Controllers/RoleTagCategory/RoleTagCategoryController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,13 +59,13 @@
 block discarded – undo
59 59
      */
60 60
     public function update(RoleTagCategory $roleTagCategory, RoleTagCategoryUpdateRequest $request)
61 61
     {
62
-        if($request->input('name') !== null) {
62
+        if ($request->input('name') !== null) {
63 63
             $roleTagCategory->setName($request->input('name'));
64 64
         }
65
-        if($request->input('description') !== null) {
65
+        if ($request->input('description') !== null) {
66 66
             $roleTagCategory->setDescription($request->input('description'));
67 67
         }
68
-        if($request->input('reference') !== null) {
68
+        if ($request->input('reference') !== null) {
69 69
             $roleTagCategory->setReference($request->input('reference'));
70 70
         }
71 71
 
Please login to merge, or discard this patch.
src/Http/Controllers/GroupTag/GroupTagController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,16 +62,16 @@
 block discarded – undo
62 62
      */
63 63
     public function update(GroupTag $groupTag, GroupTagUpdateRequest $request)
64 64
     {
65
-        if($request->input('name') !== null) {
65
+        if ($request->input('name') !== null) {
66 66
             $groupTag->setName($request->input('name'));
67 67
         }
68
-        if($request->input('description') !== null) {
68
+        if ($request->input('description') !== null) {
69 69
             $groupTag->setDescription($request->input('description'));
70 70
         }
71
-        if($request->input('reference') !== null) {
71
+        if ($request->input('reference') !== null) {
72 72
             $groupTag->setReference($request->input('reference'));
73 73
         }
74
-        if($request->input('tag_category_id') !== null) {
74
+        if ($request->input('tag_category_id') !== null) {
75 75
             $groupTag->setTagCategoryId($request->input('tag_category_id'));
76 76
         }
77 77
 
Please login to merge, or discard this patch.
src/Http/Controllers/PositionTagCategory/PositionTagCategoryController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,13 +59,13 @@
 block discarded – undo
59 59
      */
60 60
     public function update(PositionTagCategory $positionTagCategory, PositionTagCategoryUpdateRequest $request)
61 61
     {
62
-        if($request->input('name') !== null) {
62
+        if ($request->input('name') !== null) {
63 63
             $positionTagCategory->setName($request->input('name'));
64 64
         }
65
-        if($request->input('description') !== null) {
65
+        if ($request->input('description') !== null) {
66 66
             $positionTagCategory->setDescription($request->input('description'));
67 67
         }
68
-        if($request->input('reference') !== null) {
68
+        if ($request->input('reference') !== null) {
69 69
             $positionTagCategory->setReference($request->input('reference'));
70 70
         }
71 71
 
Please login to merge, or discard this patch.
src/Http/Controllers/UserTag/UserTagController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,16 +62,16 @@
 block discarded – undo
62 62
      */
63 63
     public function update(UserTag $userTag, UserTagUpdateRequest $request)
64 64
     {
65
-        if($request->input('name') !== null) {
65
+        if ($request->input('name') !== null) {
66 66
             $userTag->setName($request->input('name'));
67 67
         }
68
-        if($request->input('description') !== null) {
68
+        if ($request->input('description') !== null) {
69 69
             $userTag->setDescription($request->input('description'));
70 70
         }
71
-        if($request->input('reference') !== null) {
71
+        if ($request->input('reference') !== null) {
72 72
             $userTag->setReference($request->input('reference'));
73 73
         }
74
-        if($request->input('tag_category_id') !== null) {
74
+        if ($request->input('tag_category_id') !== null) {
75 75
             $userTag->setTagCategoryId($request->input('tag_category_id'));
76 76
         }
77 77
 
Please login to merge, or discard this patch.
src/Http/Controllers/UserTagCategory/UserTagCategoryController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,13 +59,13 @@
 block discarded – undo
59 59
      */
60 60
     public function update(UserTagCategory $userTagCategory, UserTagCategoryUpdateRequest $request)
61 61
     {
62
-        if($request->input('name') !== null) {
62
+        if ($request->input('name') !== null) {
63 63
             $userTagCategory->setName($request->input('name'));
64 64
         }
65
-        if($request->input('description') !== null) {
65
+        if ($request->input('description') !== null) {
66 66
             $userTagCategory->setDescription($request->input('description'));
67 67
         }
68
-        if($request->input('reference') !== null) {
68
+        if ($request->input('reference') !== null) {
69 69
             $userTagCategory->setReference($request->input('reference'));
70 70
         }
71 71
 
Please login to merge, or discard this patch.
src/Http/Controllers/RoleTag/RoleTagController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,16 +62,16 @@
 block discarded – undo
62 62
      */
63 63
     public function update(RoleTag $roleTag, RoleTagUpdateRequest $request)
64 64
     {
65
-        if($request->input('name') !== null) {
65
+        if ($request->input('name') !== null) {
66 66
             $roleTag->setName($request->input('name'));
67 67
         }
68
-        if($request->input('description') !== null) {
68
+        if ($request->input('description') !== null) {
69 69
             $roleTag->setDescription($request->input('description'));
70 70
         }
71
-        if($request->input('reference') !== null) {
71
+        if ($request->input('reference') !== null) {
72 72
             $roleTag->setReference($request->input('reference'));
73 73
         }
74
-        if($request->input('tag_category_id') !== null) {
74
+        if ($request->input('tag_category_id') !== null) {
75 75
             $roleTag->setTagCategoryId($request->input('tag_category_id'));
76 76
         }
77 77
 
Please login to merge, or discard this patch.
src/Http/Controllers/Position/PositionController.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function show(Position $position)
36 36
     {
37
-    	return $position;
37
+        return $position;
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -40,17 +40,17 @@  discard block
 block discarded – undo
40 40
     {
41 41
 
42 42
         $search = [];
43
-        if($request->has('name')) {
43
+        if ($request->has('name')) {
44 44
             $search['name'] = $request->input('name');
45 45
         }
46
-        if($request->has('description')) {
46
+        if ($request->has('description')) {
47 47
             $search['description'] = $request->input('description');
48 48
         }
49 49
         $dataPositions = $dataPositionRepository->getAllWhere($search);
50 50
         $positions = new Collection();
51
-        foreach($dataPositions as $dataPosition) {
51
+        foreach ($dataPositions as $dataPosition) {
52 52
             $position = $dataPosition->position();
53
-            if($position !== null) {
53
+            if ($position !== null) {
54 54
                 $positions->push($position);
55 55
             }
56 56
         }
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
             $request->input('name'),
83 83
             $request->input('description')
84 84
         );
85
-        foreach($dataPosition->getAdditionalAttributes() as $additionalAttribute) {
86
-            if($request->has($additionalAttribute)) {
85
+        foreach ($dataPosition->getAdditionalAttributes() as $additionalAttribute) {
86
+            if ($request->has($additionalAttribute)) {
87 87
                 $dataPosition->saveAdditionalAttribute($additionalAttribute, $request->input($additionalAttribute));
88 88
             }
89 89
         }
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
             $request->input('description', $dataPosition->description())
110 110
         );
111 111
         
112
-        foreach($dataPosition->getAdditionalAttributes() as $additionalAttribute) {
113
-            if($request->has($additionalAttribute)) {
112
+        foreach ($dataPosition->getAdditionalAttributes() as $additionalAttribute) {
113
+            if ($request->has($additionalAttribute)) {
114 114
                 $dataPosition->saveAdditionalAttribute($additionalAttribute, $request->input($additionalAttribute));
115 115
             }
116 116
         }
Please login to merge, or discard this patch.
src/Http/Controllers/GroupTagCategory/GroupTagCategoryController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,13 +59,13 @@
 block discarded – undo
59 59
      */
60 60
     public function update(GroupTagCategory $groupTagCategory, GroupTagCategoryUpdateRequest $request)
61 61
     {
62
-        if($request->input('name') !== null) {
62
+        if ($request->input('name') !== null) {
63 63
             $groupTagCategory->setName($request->input('name'));
64 64
         }
65
-        if($request->input('description') !== null) {
65
+        if ($request->input('description') !== null) {
66 66
             $groupTagCategory->setDescription($request->input('description'));
67 67
         }
68
-        if($request->input('reference') !== null) {
68
+        if ($request->input('reference') !== null) {
69 69
             $groupTagCategory->setReference($request->input('reference'));
70 70
         }
71 71
 
Please login to merge, or discard this patch.