Code Duplication    Length = 15-15 lines in 2 locations

src/Console/PublishAdminLTE.php 1 location

@@ 57-71 (lines=15) @@
54
    /**
55
     * Execute the console command.
56
     */
57
    public function handle()
58
    {
59
        $this->processOptions();
60
        $this->publishHomeController();
61
        $this->changeRegisterController();
62
        $this->changeLoginController();
63
        $this->changeForgotPasswordController();
64
        $this->changeResetPasswordController();
65
        $this->publishPublicAssets();
66
        $this->publishViews();
67
        $this->publishResourceAssets();
68
        $this->publishTests();
69
        $this->publishLanguages();
70
        $this->publishGravatar();
71
    }
72
73
    /**
74
     * Install Home Controller.

src/Providers/AdminLTETemplateServiceProvider.php 1 location

@@ 50-64 (lines=15) @@
47
    /**
48
     * Bootstrap the application services.
49
     */
50
    public function boot()
51
    {
52
        $this->defineRoutes();
53
        $this->publishHomeController();
54
        $this->changeRegisterController();
55
        $this->changeLoginController();
56
        $this->changeForgotPasswordController();
57
        $this->changeResetPasswordController();
58
        $this->publishPublicAssets();
59
        $this->publishViews();
60
        $this->publishResourceAssets();
61
        $this->publishTests();
62
        $this->publishLanguages();
63
        $this->publishGravatar();
64
    }
65
66
    /**
67
     * Define the AdminLTETemplate routes.