Skip to content

Commit

Permalink
php cs fixer format run
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdrake committed Oct 22, 2020
1 parent 5e7de02 commit 8bfdf1d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/LaravelCrmServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace VentureDrake\LaravelCrm;

use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;

class LaravelCrmServiceProvider extends ServiceProvider
Expand Down Expand Up @@ -41,7 +40,7 @@ public function boot()
], 'lang');*/

// Publishing the migrations.
if (!class_exists('CreateLaravelCrmTables')) {
if (! class_exists('CreateLaravelCrmTables')) {
$this->publishes([
__DIR__ . '/../database/migrations/create_laravel_crm_tables.php.stub' => database_path(
'migrations/'.date(
Expand Down
1 change: 0 additions & 1 deletion tests/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace VentureDrake\LaravelCrm\Tests;

use Illuminate\Foundation\Testing\RefreshDatabase;
use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/LaravelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ class LaravelTest extends TestCase
protected function getPackageProviders($app)
{
return [
LaravelCrmServiceProvider::class
LaravelCrmServiceProvider::class,
];
}

protected function getPackageAliases($app)
{
return [
'LaravelCrm' => LaravelCrmFacade::class
'LaravelCrm' => LaravelCrmFacade::class,
];
}

protected function getEnvironmentSetUp($app)
{
include_once(__DIR__.'/../database/migrations/create_laravel_crm_tables.php.stub');
include_once(__DIR__ . '/../database/migrations/create_laravel_crm_tables.php.stub');

(new \CreateLaravelCrmTables)->up();
}
Expand Down

0 comments on commit 8bfdf1d

Please sign in to comment.