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

RonasIT / laravel-entity-generator / 16143130415

08 Jul 2025 12:24PM UTC coverage: 100.0%. Remained the same
16143130415

Pull #164

github

web-flow
Merge 8c78f97eb into befbe86b8
Pull Request #164: feat: test with php8.4

905 of 905 relevant lines covered (100.0%)

11.41 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');
140✔
13

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

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

22
        $this->loadViewsFrom(__DIR__ . '/../stubs', 'entity-generator');
140✔
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

© 2025 Coveralls, Inc