diff options
| author | lsces <lester@lsces.co.uk> | 2026-03-05 10:19:18 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-03-05 10:19:18 +0000 |
| commit | 8dc14b6b9a9619690c379d92ff9c114583f249cb (patch) | |
| tree | 62a2a736334b62c6611bd30f64b486a51014098a /src/FirebirdServiceProvider.php | |
| parent | 1bdc7cd5c95561622103cc470dba0af041996c28 (diff) | |
| download | illuminate-firebird-8dc14b6b9a9619690c379d92ff9c114583f249cb.tar.gz illuminate-firebird-8dc14b6b9a9619690c379d92ff9c114583f249cb.tar.bz2 illuminate-firebird-8dc14b6b9a9619690c379d92ff9c114583f249cb.zip | |
Remove the src folder copies of the filesv2.0.0
Diffstat (limited to 'src/FirebirdServiceProvider.php')
| -rwxr-xr-x | src/FirebirdServiceProvider.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/FirebirdServiceProvider.php b/src/FirebirdServiceProvider.php deleted file mode 100755 index 58cc761..0000000 --- a/src/FirebirdServiceProvider.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Xgrz\Firebird; - -use Illuminate\Database\Connection; -use Illuminate\Support\ServiceProvider; - -class FirebirdServiceProvider extends ServiceProvider -{ - /** - * Register any application services. - * - * @return void - */ - public function register(): void - { - Connection::resolverFor('firebird', function($connection, $database, $tablePrefix, $config) { - return new FirebirdConnection($connection, $database, $tablePrefix, $config); - }); - - $this->app->bind('db.connector.firebird', FirebirdConnector::class); - } -} |
