Code Duplication    Length = 16-16 lines in 2 locations

src/Providers/AdminLTETemplateServiceProvider.php 1 location

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

src/Console/PublishAdminLTE.php 1 location

@@ 56-71 (lines=16) @@
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
        $this->publishConfig();
71
    }
72
73
    /**
74
     * Install Home Controller.