Skip to content

Commit

Permalink
style patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Redjik committed Aug 21, 2015
1 parent 623cf4e commit 9cb81b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion api/database/factories/ModelFactory.php
Expand Up @@ -134,7 +134,7 @@
$factory->define(App\Models\Tag::class, function (\Faker\Generator $faker) {
return [
'tag_id' => $faker->uuid,
'tag' => preg_replace('/[^\pL\pN\s._-]/u','',$faker->unique()->text(20)),
'tag' => preg_replace('/[^\pL\pN\s._-]/u', '', $faker->unique()->text(20)),
];
});

Expand Down
Expand Up @@ -18,8 +18,6 @@ public function up()
$table->string('tag', 20)->unique();
}
);


}

/**
Expand Down

0 comments on commit 9cb81b8

Please sign in to comment.