Skip to content

Commit a474171

Browse files
authored
removed reference to package config file since it has been removed
1 parent dbb48fb commit a474171

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/Laravel/ServiceProvider.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,13 @@ public function boot()
2424
*/
2525
public function register()
2626
{
27-
$configPath = realpath(__DIR__ . '/../config/loggableModels.php');
28-
29-
$this->publishes([$configPath => $this->getConfigPath()], 'config');
30-
3127
$this->publishes([ realpath( __DIR__ . '/../database/migrations/' ) => database_path('migrations')], 'migrations');
3228

3329
// Define Custom Polymorphic Types
3430
Relation::morphMap([
3531

3632
]);
3733

38-
$this->mergeConfigFrom($configPath, 'loggableModels');
39-
4034
$this->app->bind('loggable-models', function () {
4135
return new ModelLogHandler();
4236
});

0 commit comments

Comments
 (0)