Skip to content

Commit

Permalink
style: fix (updated) code style
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Mar 27, 2024
1 parent d2a3eac commit 343a9b5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
2 changes: 0 additions & 2 deletions src/Commands/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ class Index extends Command

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
Expand Down
2 changes: 0 additions & 2 deletions src/Commands/IndexOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ class IndexOne extends Command

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
Expand Down
2 changes: 0 additions & 2 deletions src/Commands/UnindexOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ class UnindexOne extends Command

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
Expand Down
10 changes: 5 additions & 5 deletions src/FulltextServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
class FulltextServiceProvider extends ServiceProvider
{
protected $commands = [
Index::class,
IndexOne::class,
UnindexOne::class,
Index::class,
IndexOne::class,
UnindexOne::class,
];

/**
Expand All @@ -28,14 +28,14 @@ public function register()
if ($this->app->runningInConsole()) {
$this->publishes(
[
__DIR__.'/../config/laravel-fulltext.php' => config_path('laravel-fulltext.php'),
__DIR__.'/../config/laravel-fulltext.php' => config_path('laravel-fulltext.php'),
],
'laravel-fulltext'
);

$this->publishes(
[
__DIR__.'/../database/migrations' => database_path('migrations'),
__DIR__.'/../database/migrations' => database_path('migrations'),
],
'laravel-fulltext'
);
Expand Down
2 changes: 1 addition & 1 deletion src/Indexable.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Swis\Laravel\Fulltext;

/**
* @property \Swis\Laravel\Fulltext\IndexedRecord|null $indexedRecord
* @property IndexedRecord|null $indexedRecord
*/
trait Indexable
{
Expand Down

0 comments on commit 343a9b5

Please sign in to comment.