Skip to content

Commit 64a81c9

Browse files
authored
chore: remove final keyword from classes (#317)
1 parent 625276a commit 64a81c9

File tree

65 files changed

+65
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+65
-65
lines changed

src/Algolia.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Illuminate\Contracts\Container\Container;
2121
use function is_string;
2222

23-
final class Algolia
23+
class Algolia
2424
{
2525
/**
2626
* @var \Illuminate\Contracts\Container\Container

src/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use function is_callable;
1919
use Laravel\Scout\Builder as BaseBuilder;
2020

21-
final class Builder extends BaseBuilder
21+
class Builder extends BaseBuilder
2222
{
2323
/**
2424
* @var Collection

src/Console/Commands/FlushCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Algolia\ScoutExtended\Helpers\SearchableFinder;
1818
use Illuminate\Console\Command;
1919

20-
final class FlushCommand extends Command
20+
class FlushCommand extends Command
2121
{
2222
/**
2323
* {@inheritdoc}

src/Console/Commands/ImportCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Illuminate\Support\Collection;
2121
use Laravel\Scout\Events\ModelsImported;
2222

23-
final class ImportCommand extends Command
23+
class ImportCommand extends Command
2424
{
2525
/**
2626
* {@inheritdoc}

src/Console/Commands/MakeAggregatorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
use Illuminate\Console\GeneratorCommand;
1717

18-
final class MakeAggregatorCommand extends GeneratorCommand
18+
class MakeAggregatorCommand extends GeneratorCommand
1919
{
2020
/**
2121
* {@inheritdoc}

src/Console/Commands/OptimizeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
use Algolia\ScoutExtended\Settings\LocalFactory;
2222
use Illuminate\Console\Command;
2323

24-
final class OptimizeCommand extends Command
24+
class OptimizeCommand extends Command
2525
{
2626
/**
2727
* {@inheritdoc}

src/Console/Commands/ReImportCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use function count;
2121
use Illuminate\Console\Command;
2222

23-
final class ReImportCommand extends Command
23+
class ReImportCommand extends Command
2424
{
2525
/**
2626
* {@inheritdoc}

src/Console/Commands/StatusCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use function count;
2121
use Illuminate\Console\Command;
2222

23-
final class StatusCommand extends Command
23+
class StatusCommand extends Command
2424
{
2525
/**
2626
* {@inheritdoc}

src/Console/Commands/SyncCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Algolia\ScoutExtended\Settings\Synchronizer;
2121
use Illuminate\Console\Command;
2222

23-
final class SyncCommand extends Command
23+
class SyncCommand extends Command
2424
{
2525
/**
2626
* {@inheritdoc}

src/Exceptions/ModelNotDefinedInAggregatorException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use RuntimeException;
1717
use Throwable;
1818

19-
final class ModelNotDefinedInAggregatorException extends RuntimeException
19+
class ModelNotDefinedInAggregatorException extends RuntimeException
2020
{
2121
/**
2222
* {@inheritdoc}

0 commit comments

Comments
 (0)