Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
haruncpi committed Oct 28, 2019
1 parent b2118fe commit 5fef151
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"extra": {
"laravel": {
"providers": [
"Haruncpi\\IdGenerator\\IdGeneratorServiceProvider"
"Haruncpi\\LaravelIdGenerator\\IdGeneratorServiceProvider"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/IdGenerator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Haruncpi\IdGenerator;
namespace Haruncpi\LaravelIdGenerator;

use DB, Exception;

Expand Down
4 changes: 2 additions & 2 deletions src/IdGeneratorServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php namespace Haruncpi\IdGenerator;
<?php namespace Haruncpi\LaravelIdGenerator;

use Illuminate\Support\ServiceProvider;

Expand All @@ -13,7 +13,7 @@ public function boot()

public function register()
{
$this->app->make('Haruncpi\IdGenerator\IdGenerator');
$this->app->make('Haruncpi\LaravelIdGenerator\IdGenerator');
}

}

0 comments on commit 5fef151

Please sign in to comment.