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\SQLiteGrammar as IlluminateSQLiteGrammar;
class SQLiteGrammar extends IlluminateSQLiteGrammar
{
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 'varchar';
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.