Completed
Pull Request — master (#32)
by Manuel
05:39
created
app/Http/Controllers/WelcomeController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      */
54 54
     public function gettingStarted(MarkdownParser $markdown, Cache $cache, Filesystem $file)
55 55
     {
56
-        $gettingStarted = $cache->remember('getting-started', 5, function () use ($markdown, $file) {
56
+        $gettingStarted = $cache->remember('getting-started', 5, function() use ($markdown, $file) {
57 57
             $gettingStarted = $file->get(base_path('resources/getting-started/readme.md'));
58 58
 
59 59
             return $markdown->parse($gettingStarted);
Please login to merge, or discard this patch.
app/Providers/AppServiceProvider.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -7,26 +7,26 @@
 block discarded – undo
7 7
 
8 8
 class AppServiceProvider extends ServiceProvider
9 9
 {
10
-    /**
11
-     * Bootstrap any application services.
12
-     */
13
-    public function boot()
14
-    {
15
-        //
16
-    }
10
+	/**
11
+	 * Bootstrap any application services.
12
+	 */
13
+	public function boot()
14
+	{
15
+		//
16
+	}
17 17
 
18
-    /**
19
-     * Register any application services.
20
-     */
21
-    public function register()
22
-    {
23
-        $this->app->bind(
24
-            \Illuminate\Contracts\Auth\Registrar::class,
25
-            Registrar::class
26
-        );
18
+	/**
19
+	 * Register any application services.
20
+	 */
21
+	public function register()
22
+	{
23
+		$this->app->bind(
24
+			\Illuminate\Contracts\Auth\Registrar::class,
25
+			Registrar::class
26
+		);
27 27
 
28
-        if ($this->app->environment('local', 'testing')) {
29
-            $this->app->register(\Laravel\Dusk\DuskServiceProvider::class);
30
-        }
31
-    }
28
+		if ($this->app->environment('local', 'testing')) {
29
+			$this->app->register(\Laravel\Dusk\DuskServiceProvider::class);
30
+		}
31
+	}
32 32
 }
Please login to merge, or discard this patch.