Skip to content

Commit

Permalink
Make more classes final
Browse files Browse the repository at this point in the history
  • Loading branch information
Zombaya committed Dec 15, 2024
1 parent eac4a93 commit b7f8c24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src-new/DependencyInjection/DoctrineEncryptExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@
namespace DoctrineEncryptBundle\DoctrineEncryptBundle\DependencyInjection;

use Ambta\DoctrineEncryptBundle\DependencyInjection\Configuration;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\HttpKernel\Kernel;

/**
* @internal
*/
class DoctrineEncryptExtension extends \Ambta\DoctrineEncryptBundle\DependencyInjection\DoctrineEncryptExtension
final class DoctrineEncryptExtension extends \Ambta\DoctrineEncryptBundle\DependencyInjection\DoctrineEncryptExtension
{
public function load(array $configs, ContainerBuilder $container): void
{
Expand Down
2 changes: 1 addition & 1 deletion src-new/DependencyInjection/ServiceConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @internal
*/
class ServiceConfigurator
final class ServiceConfigurator
{
/** @var VersionTester */
private $versionTester;
Expand Down
2 changes: 1 addition & 1 deletion src-new/DoctrineEncryptBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symfony\Component\HttpKernel\Bundle\Bundle;

class DoctrineEncryptBundle extends Bundle
final class DoctrineEncryptBundle extends Bundle
{
public function loadExtension(array $config, ContainerConfigurator $container, ContainerBuilder $builder): void
{
Expand Down

0 comments on commit b7f8c24

Please sign in to comment.