Code Duplication    Length = 11-12 lines in 2 locations

src/Console/PublishAdminLTE.php 1 location

@@ 28-38 (lines=11) @@
25
     * Execute the console command.
26
     *
27
     */
28
    public function handle()
29
    {
30
        $this->publishHomeController();
31
        $this->changeRegisterController();
32
        $this->publishPublicAssets();
33
        $this->publishViews();
34
        $this->publishResourceAssets();
35
        $this->publishTests();
36
        $this->publishLanguages();
37
        $this->publishGravatar();
38
    }
39
40
    /**
41
     * Install Home Controller.

src/Providers/AdminLTETemplateServiceProvider.php 1 location

@@ 47-58 (lines=12) @@
44
    /**
45
     * Bootstrap the application services.
46
     */
47
    public function boot()
48
    {
49
        $this->defineRoutes();
50
        $this->publishHomeController();
51
        $this->changeRegisterController();
52
        $this->publishPublicAssets();
53
        $this->publishViews();
54
        $this->publishResourceAssets();
55
        $this->publishTests();
56
        $this->publishLanguages();
57
        $this->publishGravatar();
58
    }
59
60
    /**
61
     * Define the AdminLTETemplate routes.