Skip to content

Commit

Permalink
Convert @final to hard final
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN committed Mar 12, 2024
1 parent 68894b4 commit 4e46a27
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
4 changes: 1 addition & 3 deletions src/Executor/MongoDBExecutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@

/**
* Class responsible for executing data fixtures.
*
* @final since 1.8.0
*/
class MongoDBExecutor extends AbstractExecutor
final class MongoDBExecutor extends AbstractExecutor
{
private MongoDBReferenceListener $listener;

Expand Down
4 changes: 1 addition & 3 deletions src/Executor/ORMExecutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@

/**
* Class responsible for executing data fixtures.
*
* @final since 1.8.0
*/
class ORMExecutor extends AbstractExecutor
final class ORMExecutor extends AbstractExecutor
{
use ORMExecutorCommon;

Expand Down
4 changes: 1 addition & 3 deletions src/Executor/PHPCRExecutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@

/**
* Class responsible for executing data fixtures.
*
* @final since 1.8.0
*/
class PHPCRExecutor extends AbstractExecutor
final class PHPCRExecutor extends AbstractExecutor
{
/**
* @param DocumentManagerInterface $dm manager instance used for persisting the fixtures
Expand Down
4 changes: 1 addition & 3 deletions src/Purger/MongoDBPurger.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@

/**
* Class responsible for purging databases of data before reloading data fixtures.
*
* @final since 1.8.0
*/
class MongoDBPurger implements PurgerInterface
final class MongoDBPurger implements PurgerInterface
{
/**
* Construct new purger instance.
Expand Down
4 changes: 1 addition & 3 deletions src/Purger/ORMPurger.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@

/**
* Class responsible for purging databases of data before reloading data fixtures.
*
* @final since 1.8.0
*/
class ORMPurger implements PurgerInterface, ORMPurgerInterface
final class ORMPurger implements PurgerInterface, ORMPurgerInterface
{
public const PURGE_MODE_DELETE = 1;
public const PURGE_MODE_TRUNCATE = 2;
Expand Down
4 changes: 1 addition & 3 deletions src/Purger/PHPCRPurger.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@

/**
* Class responsible for purging databases of data before reloading data fixtures.
*
* @final since 1.8.0
*/
class PHPCRPurger implements PurgerInterface
final class PHPCRPurger implements PurgerInterface
{
public function __construct(private DocumentManagerInterface|null $dm = null)
{
Expand Down

0 comments on commit 4e46a27

Please sign in to comment.