for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\BinaryUuid;
use Illuminate\Support\Fluent;
use Illuminate\Database\Schema\Grammars\MySqlGrammar as IlluminateMySqlGrammar;
class MySqlGrammar extends IlluminateMySqlGrammar
{
protected function typeUuid(Fluent $column)
return 'binary(16)';
}
protected function typeUuidText(Fluent $column)
$column
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return 'char(36)';
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.