Completed
Push — master ( 9486cb...9f18b3 )
by Jonathan
10:37
created
app/Listeners/Core/AfterSaveEventListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         if ($event->mode === 'create') {
22 22
             Entity::create([
23
-                'id' => (string) Str::uuid(),
23
+                'id' => (string)Str::uuid(),
24 24
                 'module_id' => $event->module->id,
25 25
                 'record_id' => $event->record->getKey(),
26 26
             ]);
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
         parent::boot();
21 21
 
22 22
         // Bind domain
23
-        Route::bind('domain', function ($value) {
23
+        Route::bind('domain', function($value) {
24 24
             if (preg_match('`^[0-9]+$`', $value)) { // By id
25 25
                 $domain = Domain::findOrFail($value);
26 26
             } else { // By slug
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         });
31 31
 
32 32
         // Bind module
33
-        Route::bind('module', function ($value) {
33
+        Route::bind('module', function($value) {
34 34
             if (preg_match('`^[0-9]+$`', $value)) { // By id
35 35
                 $module = Module::findOrFail($value);
36 36
             } else { // By name
Please login to merge, or discard this patch.