X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/be4f3d62cd37c7b83eb86bbf5fffa00d20acf2ec..refs/pull/3032/head:/database/factories/ModelFactory.php diff --git a/database/factories/ModelFactory.php b/database/factories/ModelFactory.php index 3d6ed1d63..dc0645540 100644 --- a/database/factories/ModelFactory.php +++ b/database/factories/ModelFactory.php @@ -11,81 +11,86 @@ | */ -$factory->define(BookStack\User::class, function ($faker) { +$factory->define(\BookStack\Auth\User::class, function ($faker) { + $name = $faker->name; + return [ - 'name' => $faker->name, - 'email' => $faker->email, - 'password' => str_random(10), - 'remember_token' => str_random(10), - 'email_confirmed' => 1 + 'name' => $name, + 'email' => $faker->email, + 'slug' => \Illuminate\Support\Str::slug($name . '-' . \Illuminate\Support\Str::random(5)), + 'password' => Str::random(10), + 'remember_token' => Str::random(10), + 'email_confirmed' => 1, ]; }); -$factory->define(BookStack\Bookshelf::class, function ($faker) { +$factory->define(\BookStack\Entities\Models\Bookshelf::class, function ($faker) { return [ - 'name' => $faker->sentence, - 'slug' => str_random(10), - 'description' => $faker->paragraph + 'name' => $faker->sentence, + 'slug' => Str::random(10), + 'description' => $faker->paragraph, ]; }); -$factory->define(BookStack\Book::class, function ($faker) { +$factory->define(\BookStack\Entities\Models\Book::class, function ($faker) { return [ - 'name' => $faker->sentence, - 'slug' => str_random(10), - 'description' => $faker->paragraph + 'name' => $faker->sentence, + 'slug' => Str::random(10), + 'description' => $faker->paragraph, ]; }); -$factory->define(BookStack\Chapter::class, function ($faker) { +$factory->define(\BookStack\Entities\Models\Chapter::class, function ($faker) { return [ - 'name' => $faker->sentence, - 'slug' => str_random(10), - 'description' => $faker->paragraph + 'name' => $faker->sentence, + 'slug' => Str::random(10), + 'description' => $faker->paragraph, ]; }); -$factory->define(BookStack\Page::class, function ($faker) { +$factory->define(\BookStack\Entities\Models\Page::class, function ($faker) { $html = '
' . implode('
', $faker->paragraphs(5)) . ''; + return [ - 'name' => $faker->sentence, - 'slug' => str_random(10), - 'html' => $html, - 'text' => strip_tags($html), - 'revision_count' => 1 + 'name' => $faker->sentence, + 'slug' => Str::random(10), + 'html' => $html, + 'text' => strip_tags($html), + 'revision_count' => 1, ]; }); -$factory->define(BookStack\Role::class, function ($faker) { +$factory->define(\BookStack\Auth\Role::class, function ($faker) { return [ 'display_name' => $faker->sentence(3), - 'description' => $faker->sentence(10) + 'description' => $faker->sentence(10), ]; }); -$factory->define(BookStack\Tag::class, function ($faker) { +$factory->define(\BookStack\Actions\Tag::class, function ($faker) { return [ - 'name' => $faker->city, - 'value' => $faker->sentence(3) + 'name' => $faker->city, + 'value' => $faker->sentence(3), ]; }); -$factory->define(BookStack\Image::class, function ($faker) { +$factory->define(\BookStack\Uploads\Image::class, function ($faker) { return [ - 'name' => $faker->slug . '.jpg', - 'url' => $faker->url, - 'path' => $faker->url, - 'type' => 'gallery', - 'uploaded_to' => 0 + 'name' => $faker->slug . '.jpg', + 'url' => $faker->url, + 'path' => $faker->url, + 'type' => 'gallery', + 'uploaded_to' => 0, ]; }); -$factory->define(BookStack\Comment::class, function($faker) { +$factory->define(\BookStack\Actions\Comment::class, function ($faker) { $text = $faker->paragraph(1); - $html = '' . $text. '
'; + $html = '' . $text . '
'; + return [ - 'html' => $html, - 'text' => $text, - 'parent_id' => null + 'html' => $html, + 'text' => $text, + 'parent_id' => null, ]; -}); \ No newline at end of file +});