Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
erkurn authored and github-actions[bot] committed Jul 20, 2022
1 parent 518454b commit b4918e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/FilamentAddressPickerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class FilamentAddressPickerServiceProvider extends PluginServiceProvider
{
protected array $beforeCoreScripts = [
'filament-address-picker-scripts' => __DIR__ . '/../resources/dist/js/filament-address-picker.js'
'filament-address-picker-scripts' => __DIR__.'/../resources/dist/js/filament-address-picker.js',
];

public function configurePackage(Package $package): void
Expand Down
4 changes: 3 additions & 1 deletion src/Forms/Components/AddressPicker.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace Erkurn\FilamentAddressPicker\Forms\Components;

use Filament\Forms\Components\Concerns\HasPlaceholder;
Expand All @@ -16,7 +17,7 @@ class AddressPicker extends Field

protected string $view = 'filament-address-picker::components.address-picker';

public function getApiKey() : string
public function getApiKey(): string
{
return $this->api_key;
}
Expand Down Expand Up @@ -48,6 +49,7 @@ public function getDebug()
public function showValue($value = true)
{
$this->debug = $value;

return $this;
}
}
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Erkurn\FilamentAddressPicker\Tests;

use Erkurn\FilamentAddressPicker\FilamentAddressPickerServiceProvider;
use Illuminate\Database\Eloquent\Factories\Factory;
use Orchestra\Testbench\TestCase as Orchestra;
use Erkurn\FilamentAddressPicker\FilamentAddressPickerServiceProvider;

class TestCase extends Orchestra
{
Expand Down

0 comments on commit b4918e8

Please sign in to comment.