• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

RonasIT / laravel-entity-generator / 14998084065

13 May 2025 01:36PM UTC coverage: 99.344% (+2.4%) from 96.94%
14998084065

Pull #144

github

web-flow
Merge eb31a5c6b into d191e02c5
Pull Request #144: tests:add tests for different package and project configs

909 of 915 relevant lines covered (99.34%)

5.57 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/EntityGeneratorServiceProvider.php
1
<?php
2

3
namespace RonasIT\Support;
4

5
use Illuminate\Support\ServiceProvider;
6
use RonasIT\Support\Commands\MakeEntityCommand;
7

8
class EntityGeneratorServiceProvider extends ServiceProvider
9
{
10
    public function boot()
11
    {
12
        $this->mergeConfigFrom(__DIR__ . '/../config/entity-generator.php', 'entity-generator');
68✔
13

14
        $this->commands([
68✔
15
            MakeEntityCommand::class,
68✔
16
        ]);
68✔
17

18
        $this->publishes([
68✔
19
            __DIR__ . '/../config/entity-generator.php' => config_path('entity-generator.php'),
68✔
20
        ], 'config');
68✔
21

22
        $this->loadViewsFrom(__DIR__ . '/../stubs', 'entity-generator');
68✔
23
    }
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc