File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ public static function invalidContactType()
233
233
*/
234
234
public static function contactsBulkSaveFailed ($ message = null )
235
235
{
236
- return new static ('contacts bulk upload failed ' . is_null ($ message ) ? '' : ': ' . $ message );
236
+ return new static ('contacts bulk upload failed ' . ( is_null ($ message ) ? '' : ': ' . $ message) );
237
237
}
238
238
239
239
/**
@@ -245,7 +245,7 @@ public static function contactsBulkSaveFailed($message = null)
245
245
*/
246
246
public static function invalidAutopilotType ($ type = null )
247
247
{
248
- return new static (is_null ($ type ) ? 'Invalid data type. ' : '" ' . $ type . '" is not a valid Autopilot data type ' );
248
+ return new static (( is_null ($ type ) ? 'Invalid data type. ' : '" ' . $ type . '" is not a valid Autopilot data type ' ) );
249
249
}
250
250
251
251
/**
@@ -258,7 +258,7 @@ public static function invalidAutopilotType($type = null)
258
258
*/
259
259
public static function typeMismatch ($ expected , $ type = null )
260
260
{
261
- return new static ('Type value mismatch! Expected: ' . $ expected . is_null ($ type ) ? '' : ', got: ' . $ type );
261
+ return new static ('Type value mismatch! Expected: ' . $ expected . ( is_null ($ type ) ? '' : ', got: ' . $ type) );
262
262
}
263
263
264
264
}
You can’t perform that action at this time.
0 commit comments