File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,11 @@ trait ZeroDowntimeMigration
11
11
*/
12
12
public function timeoutDown (): float
13
13
{
14
+ // @phpstan-ignore function.impossibleType
14
15
if (property_exists ($ this , 'timeoutDown ' )) {
15
16
return (float ) $ this ->timeoutDown ;
16
17
}
18
+ // @phpstan-ignore function.impossibleType
17
19
if (property_exists ($ this , 'timeout ' )) {
18
20
return (float ) $ this ->timeout ;
19
21
}
@@ -26,9 +28,11 @@ public function timeoutDown(): float
26
28
*/
27
29
public function timeoutUp (): float
28
30
{
31
+ // @phpstan-ignore function.impossibleType
29
32
if (property_exists ($ this , 'timeoutUp ' )) {
30
33
return (float ) $ this ->timeoutUp ;
31
34
}
35
+ // @phpstan-ignore function.impossibleType
32
36
if (property_exists ($ this , 'timeout ' )) {
33
37
return (float ) $ this ->timeout ;
34
38
}
You can’t perform that action at this time.
0 commit comments