Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 45d951c

Browse files
authored
Update statistics table name check
Class name was missing Table, this result into creating new migrations everytime you publish the package.
1 parent c5c1161 commit 45d951c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebSocketsServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function boot()
2525
__DIR__.'/../config/websockets.php' => base_path('config/websockets.php'),
2626
], 'config');
2727

28-
if (! class_exists('CreateWebSocketsStatisticsEntries')) {
28+
if (! class_exists('CreateWebSocketsStatisticsEntriesTable')) {
2929
$this->publishes([
3030
__DIR__.'/../database/migrations/create_websockets_statistics_entries_table.php.stub' => database_path('migrations/'.date('Y_m_d_His', time()).'_create_websockets_statistics_entries_table.php'),
3131
], 'migrations');

0 commit comments

Comments
 (0)