From 093d435eb36117175058241659661df1285350d7 Mon Sep 17 00:00:00 2001 From: Korben Dallas Date: Sun, 27 Dec 2020 00:53:52 +0300 Subject: [PATCH] Fixed scrutinizer issue (#3) * Fixed scrutinizer issue * Updated composer.json: fixed repo name --- composer.json | 2 +- database/Laravel/factories/TestModelFactory.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d2613eb..504b442 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "umbrellio/table_sync_php", + "name": "umbrellio/table-sync-php", "description": "PHP's implementation of the library providing data synchronization between microservices", "keywords": [ "php", diff --git a/database/Laravel/factories/TestModelFactory.php b/database/Laravel/factories/TestModelFactory.php index d129a15..1eec427 100644 --- a/database/Laravel/factories/TestModelFactory.php +++ b/database/Laravel/factories/TestModelFactory.php @@ -13,6 +13,6 @@ ]; }); -$factory->define(TestModelWithExceptedFields::class, function (Faker $faker) use ($factory) { +$factory->define(TestModelWithExceptedFields::class, function () use ($factory) { return $factory->raw(TestModel::class); });