Skip to content

Commit

Permalink
Resolve bug with ServiceProviders (#4)
Browse files Browse the repository at this point in the history
* Resolve bug with ServiceProviders
* Resolve scrutinizer issue
  • Loading branch information
pvsaintpe committed Dec 26, 2020
1 parent f4774d7 commit 5666f67
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ jobs:
postgres: '12'
php_versions: '8.0'
laravel: '^8.0'
experimental: false
coverage: false
- operating_system: ubuntu-latest
postgres: '13'
php_versions: '8.0'
laravel: '^8.0'
experimental: true
coverage: false
runs-on: '${{ matrix.operating_system }}'
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@
},
"extra": {
"laravel": {
"providers": []
"providers": [
"Umbrellio\\TableSync\\Integration\\Laravel\\TableSyncServiceProvider",
"Umbrellio\\TableSync\\Integration\\Laravel\\InfluxDBServiceProvider"
]
}
}
}
1 change: 1 addition & 0 deletions src/Rabbit/ConnectionContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public function close(): void
$this->connection->close();
$this->connection = null;
} catch (ErrorException $errorException) {
// @todo Finish later
}
}
}

0 comments on commit 5666f67

Please sign in to comment.