Skip to content

Commit

Permalink
Fixed namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
chinleung committed Aug 1, 2019
1 parent 54524b2 commit 75003d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ composer require chinleung/laravel-locales
By default, the application locales is only going to be `en`. If your application support other locales, you can either set a `app.locales` in your `config/app.php` or publish the configuration file:

``` bash
php artisan vendor:publish --provider="Chinleung\LaravelMultilingualRoutes\LaravelLocalesServiceProvider" --tag="config"
php artisan vendor:publish --provider="ChinLeung\LaravelMultilingualRoutes\LaravelLocalesServiceProvider" --tag="config"
```

## Helpers
Expand Down
2 changes: 1 addition & 1 deletion src/LaravelLocalesServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Chinleung\LaravelLocales;
namespace ChinLeung\LaravelLocales;

use Illuminate\Support\ServiceProvider;

Expand Down
2 changes: 1 addition & 1 deletion tests/HelpersTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Chinleung\LaravelLocales\Tests;
namespace ChinLeung\LaravelLocales\Tests;

use ChinLeung\LaravelLocales\LaravelLocalesServiceProvider;
use Orchestra\Testbench\TestCase;
Expand Down

0 comments on commit 75003d2

Please sign in to comment.