File tree 1 file changed +14
-14
lines changed
src/Servers/Reverb/Console/Commands
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -89,20 +89,6 @@ protected function ensureStaleConnectionsAreCleaned(LoopInterface $loop): void
89
89
});
90
90
}
91
91
92
- /**
93
- * Schedule Pulse to ingest events if enabled.
94
- */
95
- protected function ensurePulseEventsAreCollected (LoopInterface $ loop , int $ interval ): void
96
- {
97
- if (! $ this ->laravel ->bound (\Laravel \Pulse \Pulse::class)) {
98
- return ;
99
- }
100
-
101
- $ loop ->addPeriodicTimer ($ interval , function () {
102
- $ this ->laravel ->make (\Laravel \Pulse \Pulse::class)->ingest ();
103
- });
104
- }
105
-
106
92
/**
107
93
* Check to see whether the restart signal has been sent.
108
94
*/
@@ -139,6 +125,20 @@ protected function gracefullyDisconnect(): void
139
125
});
140
126
}
141
127
128
+ /**
129
+ * Schedule Pulse to ingest events if enabled.
130
+ */
131
+ protected function ensurePulseEventsAreCollected (LoopInterface $ loop , int $ interval ): void
132
+ {
133
+ if (! $ this ->laravel ->bound (\Laravel \Pulse \Pulse::class)) {
134
+ return ;
135
+ }
136
+
137
+ $ loop ->addPeriodicTimer ($ interval , function () {
138
+ $ this ->laravel ->make (\Laravel \Pulse \Pulse::class)->ingest ();
139
+ });
140
+ }
141
+
142
142
/**
143
143
* Get the list of signals handled by the command.
144
144
*/
You can’t perform that action at this time.
0 commit comments