Skip to content

Commit

Permalink
Merge pull request #6 from AfzalSabbir/publishable
Browse files Browse the repository at this point in the history
Namespace updated
  • Loading branch information
AfzalSabbir committed Sep 17, 2022
2 parents b1d81f2 + 74f7ab5 commit 6b926f4
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) Afzalsabbir<mailto:[email protected]>
Copyright (c) AfzalSabbir<mailto:[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
2 changes: 1 addition & 1 deletion src/SlugGeneratorFacade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Afzalsabbir\SlugGenerator;
namespace AfzalSabbir\SlugGenerator;

use Illuminate\Support\Facades\Facade;

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

namespace Afzalsabbir\SlugGenerator;
namespace AfzalSabbir\SlugGenerator;

use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Route;
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/SlugGenerator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Afzalsabbir\SlugGenerator\Traits;
namespace AfzalSabbir\SlugGenerator\Traits;

use Closure;
use Illuminate\Database\Eloquent\Model;
Expand Down
2 changes: 1 addition & 1 deletion src/slug-generator-helpers.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Afzalsabbir\SlugGenerator\Traits\SlugGenerator;
use AfzalSabbir\SlugGenerator\Traits\SlugGenerator;
use Illuminate\Database\Eloquent\Model;

if (!function_exists('generateSlug')) {
Expand Down
4 changes: 2 additions & 2 deletions tests/Feature/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Afzalsabbir\SlugGenerator\Tests\Feature;
namespace AfzalSabbir\SlugGenerator\Tests\Feature;

use Afzalsabbir\SlugGenerator\Tests\TestCase;
use AfzalSabbir\SlugGenerator\Tests\TestCase;

class ExampleTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Afzalsabbir\SlugGenerator\Tests;
namespace AfzalSabbir\SlugGenerator\Tests;

use Afzalsabbir\SlugGenerator\SlugGeneratorServiceProvider;
use AfzalSabbir\SlugGenerator\SlugGeneratorServiceProvider;
use Orchestra\Testbench\TestCase as BaseTestCase;

class TestCase extends BaseTestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/ExampleTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Afzalsabbir\SlugGenerator\Tests\Unit;
namespace AfzalSabbir\SlugGenerator\Tests\Unit;

use Afzalsabbir\SlugGenerator\Tests\TestCase;
use AfzalSabbir\SlugGenerator\Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;

class ExampleTest extends TestCase
Expand Down

0 comments on commit 6b926f4

Please sign in to comment.