Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( 8e0037...1dff7f )
by Cristian
03:04 queued 12s
created
src/resources/views/crud/fields/page_or_link.blade.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 <!-- Used in Backpack\MenuCRUD -->
3 3
 
4 4
 <?php
5
-    $field['options'] =  [
5
+    $field['options'] = [
6 6
         'page_link'     => trans('backpack::crud.page_link'), 
7 7
         'internal_link' => trans('backpack::crud.internal_link'), 
8 8
         'external_link' => trans('backpack::crud.external_link')
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         </div>
42 42
         <div class="col-sm-9">
43 43
             <!-- external link input -->
44
-              <div class="page_or_link_value page_or_link_external_link <?php if (! isset($entry) || $entry->type != 'external_link') {
44
+              <div class="page_or_link_value page_or_link_external_link <?php if (!isset($entry) || $entry->type != 'external_link') {
45 45
     echo 'd-none';
46 46
 } ?>">
47 47
                 <input
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
                     >
61 61
               </div>
62 62
               <!-- internal link input -->
63
-              <div class="page_or_link_value page_or_link_internal_link <?php if (! isset($entry) || $entry->type != 'internal_link') {
63
+              <div class="page_or_link_value page_or_link_internal_link <?php if (!isset($entry) || $entry->type != 'internal_link') {
64 64
     echo 'd-none';
65 65
 } ?>">
66 66
                 <input
Please login to merge, or discard this patch.