@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | { |
66 | 66 | $threatTypes = config('safe-urls.google.threat_types'); |
67 | 67 | |
68 | - return !empty($threatTypes) ? $threatTypes : []; |
|
68 | + return !empty($threatTypes) ? $threatTypes : [ ]; |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | { |
78 | 78 | $platformTypes = config('safe-urls.google.threat_platform_types'); |
79 | 79 | |
80 | - return !empty($platformTypes) ? $platformTypes : []; |
|
80 | + return !empty($platformTypes) ? $platformTypes : [ ]; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | { |
90 | 90 | $threatEntryTypes = config('safe-urls.google.threat_entry_types'); |
91 | 91 | |
92 | - return !empty($threatEntryTypes) ? $threatEntryTypes : [self::DEFAULT_THREAT_ENTRY_TYPE]; |
|
92 | + return !empty($threatEntryTypes) ? $threatEntryTypes : [ self::DEFAULT_THREAT_ENTRY_TYPE ]; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |