Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny.iva committed Mar 27, 2023
1 parent 66b7361 commit 7be6fef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -16,6 +16,7 @@

```shell
composer require umbrellio/php-table-sync
php artisan vendor:publish --tag=config-table-sync
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion src/Integration/Laravel/TableSyncServiceProvider.php
Expand Up @@ -35,7 +35,7 @@ public function boot(): void

$this->publishes([
$config => base_path('config/table_sync.php'),
], 'config');
], 'config-table-sync');
}

public function configureChannel(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Rabbit/ConnectionContainer.php
Expand Up @@ -12,7 +12,7 @@ class ConnectionContainer
{
private mixed $waitBeforeReconnectMicroseconds = 1000000;

private ?AbstractConnection $connection;
private ?AbstractConnection $connection = null;

public function __construct(
private readonly string $host,
Expand Down

0 comments on commit 7be6fef

Please sign in to comment.