Skip to content

Commit bce4b26

Browse files
author
Mehran Rasulian
authored
Update ServiceProvider.php
1 parent 2f636c6 commit bce4b26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ public function boot()
1616
{
1717
$this->publishes([
1818
__DIR__ . '/../config/verification.php' => $this->app->configPath().'/verification.php',
19-
], 'config');
19+
], 'verification-config');
2020

2121
if (! class_exists('CreateVerificationTables')) {
2222
$timestamp = date('Y_m_d_His', time());
2323
$this->publishes([
2424
__DIR__ . '/../database/migrations/create_user_verifications_table.php.stub'
2525
=> $this->app->databasePath()."/migrations/{$timestamp}_create_user_verifications_table.php",
26-
], 'migrations');
26+
], 'verification-migrations');
2727
}
2828

2929
// Add the Activation facade

0 commit comments

Comments
 (0)