Code Duplication    Length = 11-12 lines in 2 locations

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.

src/Console/PublishAdminLTE.php 1 location

@@ 51-61 (lines=11) @@
48
     * Execute the console command.
49
     *
50
     */
51
    public function handle()
52
    {
53
        $this->publishHomeController();
54
        $this->changeRegisterController();
55
        $this->publishPublicAssets();
56
        $this->publishViews();
57
        $this->publishResourceAssets();
58
        $this->publishTests();
59
        $this->publishLanguages();
60
        $this->publishGravatar();
61
    }
62
63
    /**
64
     * Install Home Controller.