File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ private function notifyAppriseChannels(Result $result): void
5555 private function notifyDatabaseChannels (Result $ result ): void
5656 {
5757 // Don't send database notification if dispatched by a user or test is unhealthy.
58- if (filled ($ result ->dispatched_by ) || ! $ result ->healthy ) {
58+ if (filled ($ result ->dispatched_by ) || ! $ result ->healthy === false ) {
5959 return ;
6060 }
6161
@@ -104,7 +104,7 @@ private function notifyDispatchingUser(Result $result): void
104104 */
105105 private function notifyMailChannels (Result $ result ): void
106106 {
107- if (filled ($ result ->dispatched_by ) || ! $ result ->healthy ) {
107+ if (filled ($ result ->dispatched_by ) || $ result ->healthy === false ) {
108108 return ;
109109 }
110110
@@ -130,7 +130,7 @@ private function notifyMailChannels(Result $result): void
130130 private function notifyWebhookChannels (Result $ result ): void
131131 {
132132 // Don't send webhook if dispatched by a user or test is unhealthy.
133- if (filled ($ result ->dispatched_by ) || ! $ result ->healthy ) {
133+ if (filled ($ result ->dispatched_by ) || $ result ->healthy === false ) {
134134 return ;
135135 }
136136
You can’t perform that action at this time.
0 commit comments