Skip to content

Commit

Permalink
rector/pint
Browse files Browse the repository at this point in the history
  • Loading branch information
forxer committed Feb 27, 2024
1 parent b8e6ab3 commit d67755c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/blade-ui-kit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'btn-logout' => Actions\Logout::class,
'btn-move-down' => Actions\MoveDown::class,
'btn-move-up' => Actions\MoveUp::class,
'btn-preview' => Actions\Preview::class,
'btn-preview' => Actions\Preview::class,
'btn-recycle-bin' => Actions\RecycleBin::class,
'btn-restore' => Actions\Restore::class,
'btn-save' => Actions\Save::class,
Expand Down
1 change: 0 additions & 1 deletion src/Components/Buttons/Actions/Back/BackHome.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace BladeUIKitBootstrap\Components\Buttons\Actions\Back;

use BladeUIKitBootstrap\Components\Buttons\Actions\Back\Back;
use Illuminate\Support\Str;

class BackHome extends Back
Expand Down
1 change: 0 additions & 1 deletion src/Components/Buttons/Actions/Back/BackList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace BladeUIKitBootstrap\Components\Buttons\Actions\Back;

use BladeUIKitBootstrap\Components\Buttons\Actions\Back\Back;
use Illuminate\Support\Str;

class BackList extends Back
Expand Down
4 changes: 2 additions & 2 deletions src/Concerns/BtnSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ private function validBtnSize(?string $size = null, bool $lg = false, bool $sm =
{
if ($size !== null) {
$size = \strtolower(\trim($size));
} elseif ($lg === true) {
} elseif ($lg) {
$size = 'lg';
} elseif ($sm === true) {
} elseif ($sm) {
$size = 'sm';
} else {
return null;
Expand Down

0 comments on commit d67755c

Please sign in to comment.