Subversion-Projekte lars-tiefland.webanos.zeldi.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
<?php
2
 
3
namespace Database\Factories;
4
 
5
use Illuminate\Database\Eloquent\Factories\Factory;
6
 
7
/**
8
 * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\MediumTypes>
9
 */
10
class MediumTypeFactory extends Factory
11
{
12
    /**
13
     * The database connection that should be used by the migration.
14
     *
15
     * @var string
16
     */
17
    protected $connection = 'cms';
18
 
19
    /**
20
     * Define the model's default state.
21
     *
22
     * @return array<string, mixed>
23
     */
24
    public function definition()
25
    {
26
        return [
27
            //
28
        ];
29
    }
30
}