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

pixelpeter / laravel5-genderize-api-client / 15695833074

17 Jun 2025 01:29AM UTC coverage: 98.925%. Remained the same
15695833074

Pull #25

github

web-flow
Merge 6c20c15f7 into cc744372a
Pull Request #25: Bump stefanzweifel/git-auto-commit-action from 5 to 6

92 of 93 relevant lines covered (98.92%)

21.77 hits per line

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

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

3
namespace Pixelpeter\Genderize;
4

5
use Illuminate\Support\ServiceProvider;
6

7
class GenderizeServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap the application services.
11
     *
12
     * @return void
13
     */
14
    public function boot()
48✔
15
    {
16
        $this->mergeConfigFrom(__DIR__.'/../config/genderize.php', 'genderize');
48✔
17

18
        $this->publishes([
48✔
19
            __DIR__.'/../config/genderize.php' => config_path('genderize.php'),
48✔
20
        ]);
21
    }
48✔
22

23
    /**
24
     * Register the application services.
25
     *
26
     * @return void
27
     */
28
    public function register()
48✔
29
    {
30
        $app = $this->app;
48✔
31

32
        $app->bind('Pixelpeter\Genderize\GenderizeClient', function () {
33
            return new GenderizeClient(new \Unirest\Request);
6✔
34
        });
48✔
35

36
        $app->alias('Pixelpeter\Genderize\GenderizeClient', 'genderize');
48✔
37
    }
48✔
38
}
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