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 — master ( 865955...b817f3 )
by Piyapan
03:02
created
src/Routes/breadcrumbs.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,56 +1,56 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Home
4
-Breadcrumbs::for('home', function ($trail) {
4
+Breadcrumbs::for ('home', function($trail) {
5 5
   $trail->push('Home', route('home'));
6 6
 });
7 7
 
8 8
 // Property
9
-Breadcrumbs::for('rt-admin.posts.index', function ($trail) {
9
+Breadcrumbs::for ('rt-admin.posts.index', function($trail) {
10 10
   $trail->parent('home');
11 11
   $trail->push('Properties', route('rt-admin.posts.index'));
12 12
 });
13 13
 
14 14
 // Property > Add New
15
-Breadcrumbs::for('rt-admin.posts.create', function ($trail) {
15
+Breadcrumbs::for ('rt-admin.posts.create', function($trail) {
16 16
   $trail->parent('home');
17 17
   $trail->push('Properties', route('rt-admin.posts.index'));
18 18
   $trail->push('Add New', route('rt-admin.posts.index'));
19 19
 });
20 20
 
21 21
 // Property > Show
22
-Breadcrumbs::for('rt-admin.posts.show', function ($trail, $post) {
22
+Breadcrumbs::for ('rt-admin.posts.show', function($trail, $post) {
23 23
   $trail->parent('home');
24 24
   $trail->push('Properties', route('rt-admin.posts.index'));
25 25
   $trail->push($post->post_title, route('rt-admin.posts.index'));
26 26
 });
27 27
 
28 28
 // Term
29
-Breadcrumbs::for('rt-admin.terms.index', function ($trail) {
29
+Breadcrumbs::for ('rt-admin.terms.index', function($trail) {
30 30
   $trail->parent('home');
31 31
   $trail->push('Term : '.title_case(request()->get('taxonomy')), route('rt-admin.terms.index'));
32 32
 });
33 33
 
34 34
 // Home > About
35
-Breadcrumbs::for('about', function ($trail) {
35
+Breadcrumbs::for ('about', function($trail) {
36 36
   $trail->parent('home');
37 37
   $trail->push('About', route('about'));
38 38
 });
39 39
 
40 40
 // Home > Blog
41
-Breadcrumbs::for('blog', function ($trail) {
41
+Breadcrumbs::for ('blog', function($trail) {
42 42
   $trail->parent('home');
43 43
   $trail->push('Blog', route('blog'));
44 44
 });
45 45
 
46 46
 // Home > Blog > [Category]
47
-Breadcrumbs::for('category', function ($trail, $category) {
47
+Breadcrumbs::for ('category', function($trail, $category) {
48 48
   $trail->parent('blog');
49 49
   $trail->push($category->title, route('category', $category->id));
50 50
 });
51 51
 
52 52
 // Home > Blog > [Category] > [Post]
53
-Breadcrumbs::for('post', function ($trail, $post) {
53
+Breadcrumbs::for ('post', function($trail, $post) {
54 54
   $trail->parent('category', $post->category);
55 55
   $trail->push($post->title, route('post', $post->id));
56 56
 });
57 57
\ No newline at end of file
Please login to merge, or discard this patch.