File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ public static function invalidContactType()
233233 */
234234 public static function contactsBulkSaveFailed ($ message = null )
235235 {
236- return new static ('contacts bulk upload failed ' . is_null ($ message ) ? '' : ': ' . $ message );
236+ return new static ('contacts bulk upload failed ' . ( is_null ($ message ) ? '' : ': ' . $ message) );
237237 }
238238
239239 /**
@@ -245,7 +245,7 @@ public static function contactsBulkSaveFailed($message = null)
245245 */
246246 public static function invalidAutopilotType ($ type = null )
247247 {
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 ' ) );
249249 }
250250
251251 /**
@@ -258,7 +258,7 @@ public static function invalidAutopilotType($type = null)
258258 */
259259 public static function typeMismatch ($ expected , $ type = null )
260260 {
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) );
262262 }
263263
264264}
You can’t perform that action at this time.
0 commit comments