Database factories formatting

Database factories formatting
This commit is contained in:
cp6 2022-03-02 16:02:59 +11:00
parent de63bf0ab3
commit 78e7e8927a
4 changed files with 0 additions and 30 deletions

View File

@ -6,11 +6,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class DNSFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [

View File

@ -6,11 +6,6 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class DomainsFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [

View File

@ -7,18 +7,8 @@ use Illuminate\Database\Eloquent\Factories\Factory;
class ServerFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Server::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{

View File

@ -8,18 +8,8 @@ use Illuminate\Support\Str;
class UserFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = User::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [