for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dyrynda\Database\Schema\Grammars;
use Illuminate\Support\Fluent;
use Illuminate\Database\Schema\Grammars\SQLiteGrammar as IlluminateSQLiteGrammar;
class SQLiteGrammar extends IlluminateSQLiteGrammar
{
/**
* Create the column definition for a UUID type.
*
* @param \Illuminate\Support\Fluent $column
* @return string
*/
protected function typeEfficientUuid(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 'blob(256)';
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.