Code Duplication    Length = 12-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

@@ 59-70 (lines=12) @@
56
    /**
57
     * Execute the console command.
58
     */
59
    public function handle()
60
    {
61
        $this->processOptions();
62
        $this->publishHomeController();
63
        $this->changeRegisterController();
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.