Skip to content

Commit

Permalink
namespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LeMatosDeFuk committed Sep 30, 2023
1 parent 2ae9753 commit 87c5b3b
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"autoload": {
"psr-4": {
"BoredProgrammers\\Laragrid\\": "src/"
"BoredProgrammers\\LaraGrid\\": "src/"
}
},
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions resources/views/livewire/_components/date-range.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@props([
/** @var \BoredProgrammers\Laragrid\Livewire\Column $column */
/** @var \BoredProgrammers\LaraGrid\Livewire\Column $column */
'column',
/** @var \BoredProgrammers\Laragrid\Livewire\Theme $theme */
/** @var \BoredProgrammers\LaraGrid\Livewire\Theme $theme */
'theme',
])

Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/_components/select.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@props([
/** @var \BoredProgrammers\Laragrid\Livewire\Column $column */
/** @var \BoredProgrammers\LaraGrid\Livewire\Column $column */
'column',
])

Expand Down
4 changes: 2 additions & 2 deletions resources/views/livewire/_components/text.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@props([
/** @var \BoredProgrammers\Laragrid\Livewire\Column $column */
/** @var \BoredProgrammers\LaraGrid\Livewire\Column $column */
'column',
/** @var \BoredProgrammers\Laragrid\Livewire\Theme $theme */
/** @var \BoredProgrammers\LaraGrid\Livewire\Theme $theme */
'theme'
])

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

namespace BoredProgrammers\Laragrid\Livewire;
namespace BoredProgrammers\LaraGrid\Livewire;

use Exception;
use Illuminate\Contracts\View\View;
Expand Down
2 changes: 1 addition & 1 deletion src/Livewire/Column.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace BoredProgrammers\Laragrid\Livewire;
namespace BoredProgrammers\LaraGrid\Livewire;

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

namespace BoredProgrammers\Laragrid\Livewire\Components;
namespace BoredProgrammers\LaraGrid\Livewire\Components;

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

namespace BoredProgrammers\Laragrid\Livewire;
namespace BoredProgrammers\LaraGrid\Livewire;

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

namespace BoredProgrammers\Laragrid\Livewire;
namespace BoredProgrammers\LaraGrid\Livewire;

class UiKitTheme extends Theme
{
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/LaraGridServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace BoredProgrammers\Laragrid\Providers;
namespace BoredProgrammers\LaraGrid\Providers;

use Illuminate\Support\ServiceProvider;

Expand Down

0 comments on commit 87c5b3b

Please sign in to comment.