Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 54994c0

Browse files
Merge pull request #12 from JoshuaBehrens/patch-1
Remove redundant sprintf-call
2 parents 56d5073 + 9dd2a73 commit 54994c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Schema/Grammars/MySqlGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ class MySqlGrammar extends BaseMySqlGrammar
1616
*/
1717
protected function typeUuid(Fluent $column)
1818
{
19-
return sprintf('binary(16)');
19+
return 'binary(16)';
2020
}
2121
}

0 commit comments

Comments
 (0)