Skip to content

Commit

Permalink
Merge 7be6fef into 66b7361
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeek committed Mar 27, 2023
2 parents 66b7361 + 7be6fef commit a001663
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 a001663

Please sign in to comment.