Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bundle name #94

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Depending on your configuration, use phpredis or Predis

In a Symfony application, you may need to add this line to config/bundles.php
```console
Talleu\RedisOm\Bundle\TalleuPhpRedisOmBundle::class => [‘all’ => true],
Talleu\RedisOm\Bundle\TalleuRedisOmBundle::class => [‘all’ => true],
```

And that's it, your installation is complete ! 🚀
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Then run `composer update` to install the library.

In a Symfony application, you may need to add this line to config/bundles.php
```console
Talleu\RedisOm\Bundle\TalleuPhpRedisOmBundle::class => [‘all’ => true],
Talleu\RedisOm\Bundle\TalleuRedisOmBundle::class => [‘all’ => true],
```

### Redis configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;

final class TalleuPhpRedisOmExtension extends Extension
final class TalleuRedisOmExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Talleu\RedisOm\Bundle\DependencyInjection\TalleuPhpRedisOmExtension;
use Talleu\RedisOm\Bundle\DependencyInjection\TalleuRedisOmExtension;

final class TalleuPhpRedisOmBundle extends Bundle
final class TalleuRedisOmBundle extends Bundle
{
/**
* {@inheritdoc}
Expand All @@ -20,7 +20,7 @@ public function boot(): void
public function getContainerExtension(): ?ExtensionInterface
{
if (null === $this->extension) {
$this->extension = new TalleuPhpRedisOmExtension();
$this->extension = new TalleuRedisOmExtension();
}

return $this->extension;
Expand Down
Loading