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

pixelpeter / laravel5-genderize-api-client / 15701686167

17 Jun 2025 08:06AM UTC coverage: 98.925%. Remained the same
15701686167

push

github

web-flow
Bump stefanzweifel/git-auto-commit-action from 5 to 6 (#25)

Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 5 to 6.
- [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases)
- [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v5...v6)

---
updated-dependencies:
- dependency-name: stefanzweifel/git-auto-commit-action
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

92 of 93 relevant lines covered (98.92%)

13.06 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()
24✔
15
    {
16
        $this->mergeConfigFrom(__DIR__.'/../config/genderize.php', 'genderize');
24✔
17

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

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

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

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