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

RonasIT / laravel-entity-generator / 16521588794

25 Jul 2025 12:08PM UTC coverage: 100.0%. Remained the same
16521588794

Pull #170

github

web-flow
Merge ad95219ca into 3b878ef3f
Pull Request #170: feat: Generate property annotations for Model

22 of 22 new or added lines in 1 file covered. (100.0%)

932 of 932 relevant lines covered (100.0%)

11.54 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');
144✔
13

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

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

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