Skip to content

Commit

Permalink
Fix service providers
Browse files Browse the repository at this point in the history
  • Loading branch information
akalongman committed Oct 7, 2017
1 parent 049b7b1 commit 037a07e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"extra": {
"laravel": {
"providers": [
"Longman\\LaravelMultiLang\\MultiLangServiceProvider"
"Longman\\LaravelLodash\\LodashServiceProvider"
]
}
}
Expand Down
5 changes: 0 additions & 5 deletions src/Lodash/Debug/DebugServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@

namespace Longman\LaravelLodash\Debug;

use Blade;
use Illuminate\Support\ServiceProvider;
use Longman\LaravelMultiLang\Console\ExportCommand;
use Longman\LaravelMultiLang\Console\ImportCommand;
use Longman\LaravelMultiLang\Console\MigrationCommand;
use Longman\LaravelMultiLang\Console\TextsCommand;

class DebugServiceProvider extends ServiceProvider
{
Expand Down
40 changes: 40 additions & 0 deletions src/Lodash/LodashServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/*
* This file is part of the Laravel Lodash package.
*
* (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);

namespace Longman\LaravelLodash;

use Illuminate\Support\ServiceProvider;

class LodashServiceProvider extends ServiceProvider
{
protected $defer = false;

/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{

}

/**
* Register any application services.
*
* @return void
*/
public function register()
{

}

}

0 comments on commit 037a07e

Please sign in to comment.