Completed
Push — master ( 1dccb3...b72cd5 )
by Dan Michael O.
03:15
created
app/Providers/CoverCacheServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 class CoverCacheServiceProvider extends ServiceProvider
11 11
 {
12
-	/**
12
+    /**
13 13
      * Indicates if loading of the provider is deferred.
14 14
      *
15 15
      * @var bool
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,18 +24,18 @@
 block discarded – undo
24 24
     protected function schedule(Schedule $schedule)
25 25
     {
26 26
         $schedule->command('colligator:harvest-oaipmh samling42 --daily')
27
-                 ->dailyAt('02:00');
27
+                    ->dailyAt('02:00');
28 28
 
29 29
         $schedule->command('colligator:harvest-oaipmh s-litt --daily')
30
-                 ->dailyAt('03:00');
30
+                    ->dailyAt('03:00');
31 31
 
32 32
         // Bring subject heading usage counts up-to-date
33 33
         $schedule->command('colligator:reindex')
34
-                 ->weekly()->sundays()->at('04:00');
34
+                    ->weekly()->sundays()->at('04:00');
35 35
 
36 36
         // Check new documents for xisbn
37 37
         $schedule->command('colligator:harvest-xisbn')
38
-                 ->weekly()->saturdays()->at('04:00');
38
+                    ->weekly()->saturdays()->at('04:00');
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.