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 ( 5da16d...6cff4e )
by Cristian
04:04
created
src/resources/views-elfinder/elfinder.blade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     <!-- elFinder JS (REQUIRED) -->
18 18
     <script src="<?= asset($dir.'/js/elfinder.min.js') ?>"></script>
19 19
 
20
-    <?php if($locale){ ?>
20
+    <?php if ($locale) { ?>
21 21
         <!-- elFinder translation (OPTIONAL) -->
22 22
         <script src="<?= asset($dir."/js/i18n/elfinder.$locale.js") ?>"></script>
23 23
     <?php } ?>
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         $().ready(function() {
41 41
             var elf = $('#elfinder').elfinder({
42 42
                 // set your elFinder options here
43
-                <?php if($locale){ ?>
43
+                <?php if ($locale) { ?>
44 44
                     lang: '<?= $locale ?>', // locale
45 45
                 <?php } ?>
46 46
                 customData: {
Please login to merge, or discard this patch.
src/resources/views/fields/checklist_dependency.blade.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,15 +15,15 @@  discard block
 block discarded – undo
15 15
       $dependencyArray = [];
16 16
 
17 17
       //convert dependency array to simple matrix ( prymary id as key and array with secondaries id )
18
-      foreach($dependencies as $primary){
18
+      foreach ($dependencies as $primary) {
19 19
           $dependencyArray[$primary->id] = [];
20
-        foreach($primary->{$primary_dependency['entity_secondary']} as $secondary){
20
+        foreach ($primary->{$primary_dependency['entity_secondary']} as $secondary) {
21 21
             $dependencyArray[$primary->id][] = $secondary->id;
22 22
         }
23 23
       }
24 24
 
25 25
       //for update form, get initial state of the entity
26
-      if( isset($id) && $id ){
26
+      if (isset($id) && $id) {
27 27
         
28 28
         //get entity with relations for primary dependency
29 29
         $entity_dependencies = $entity_model->with($primary_dependency['entity'])
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
         $secondary_ids = [];
40 40
         
41 41
         //create secondary dependency from primary relation, used to check what chekbox must be check from second checklist
42
-        if( old($primary_dependency['name']) ) {
43
-          foreach( old($primary_dependency['name']) as $primary_item ){
44
-            foreach($dependencyArray[$primary_item] as $second_item ){
42
+        if (old($primary_dependency['name'])) {
43
+          foreach (old($primary_dependency['name']) as $primary_item) {
44
+            foreach ($dependencyArray[$primary_item] as $second_item) {
45 45
                 $secondary_ids[$second_item] = $second_item;
46 46
             }
47 47
           }
48
-        }else{ //create dependecies from relation if not from validate error
49
-          foreach( $primary_array as $primary_item ){
50
-            foreach($primary_item[$secondary_dependency['entity']] as $second_item ){
48
+        } else { //create dependecies from relation if not from validate error
49
+          foreach ($primary_array as $primary_item) {
50
+            foreach ($primary_item[$secondary_dependency['entity']] as $second_item) {
51 51
                 $secondary_ids[$second_item['id']] = $second_item['id'];
52 52
             }
53 53
           }
Please login to merge, or discard this patch.
src/resources/views/fields/checklist.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <!-- select2 -->
2 2
   <div class="form-group">
3 3
     <label>{{ $field['label'] }}</label>
4
-    <?php $entity_model = $crud->getModel();?>
4
+    <?php $entity_model = $crud->getModel(); ?>
5 5
    
6 6
     <div class="row">
7 7
         @foreach ($field['model']::all() as $connected_entity_entry)
Please login to merge, or discard this patch.
src/CrudServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
     private function registerCRUD()
68 68
     {
69
-        $this->app->bind('CRUD', function ($app) {
69
+        $this->app->bind('CRUD', function($app) {
70 70
             return new CRUD($app);
71 71
         });
72 72
     }
Please login to merge, or discard this patch.
src/resources/views-elfinder/filepicker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     <!-- Include jQuery, jQuery UI, elFinder (REQUIRED) -->
27 27
 
28 28
     <?php
29
-    $mimeTypes = implode(',', array_map(function ($t) {return "'".$t."'"; }, explode(',', $type)));
29
+    $mimeTypes = implode(',', array_map(function($t) {return "'".$t."'"; }, explode(',', $type)));
30 30
     ?>
31 31
 
32 32
     <script type="text/javascript">
Please login to merge, or discard this patch.
src/Crud.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -921,7 +921,7 @@  discard block
 block discarded – undo
921 921
     {
922 922
         $this->getDbColumnTypes();
923 923
 
924
-        array_map(function ($field) {
924
+        array_map(function($field) {
925 925
             // $this->labels[$field] = $this->makeLabel($field);
926 926
 
927 927
             $new_field = [
@@ -1182,7 +1182,7 @@  discard block
 block discarded – undo
1182 1182
      */
1183 1183
     public function getFirstOfItsTypeInArray($type, $array)
1184 1184
     {
1185
-        return array_first($array, function ($key, $item) use ($type) {
1185
+        return array_first($array, function($key, $item) use ($type) {
1186 1186
             return $item['type'] == $type;
1187 1187
         });
1188 1188
     }
@@ -1260,7 +1260,7 @@  discard block
 block discarded – undo
1260 1260
     public function sync($type, $fields, $attributes)
1261 1261
     {
1262 1262
         if (!empty($this->{$type})) {
1263
-            $this->{$type} = array_map(function ($field) use ($fields, $attributes) {
1263
+            $this->{$type} = array_map(function($field) use ($fields, $attributes) {
1264 1264
                 if (in_array($field['name'], (array) $fields)) {
1265 1265
                     $field = array_merge($field, $attributes);
1266 1266
                 }
@@ -1286,7 +1286,7 @@  discard block
 block discarded – undo
1286 1286
                 }
1287 1287
             }
1288 1288
 
1289
-            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) {return !in_array($item['name'], $this->sort[$items]); }));
1289
+            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) {return !in_array($item['name'], $this->sort[$items]); }));
1290 1290
         }
1291 1291
 
1292 1292
         return $this->{$items};
Please login to merge, or discard this patch.