Code Duplication    Length = 15-16 lines in 2 locations

src/Console/PublishAdminLTE.php 1 location

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

src/Providers/AdminLTETemplateServiceProvider.php 1 location

@@ 69-84 (lines=16) @@
66
    /**
67
     * Bootstrap the application services.
68
     */
69
    public function boot()
70
    {
71
        $this->defineRoutes();
72
        $this->publishHomeController();
73
        $this->changeRegisterController();
74
        $this->changeLoginController();
75
        $this->changeForgotPasswordController();
76
        $this->changeResetPasswordController();
77
        $this->publishPublicAssets();
78
        $this->publishViews();
79
        $this->publishResourceAssets();
80
        $this->publishTests();
81
        $this->publishLanguages();
82
        $this->publishGravatar();
83
        $this->publishConfig();
84
    }
85
86
    /**
87
     * Define the AdminLTETemplate routes.