Completed
Pull Request — master (#3)
by ARCANEDEV
16:54
created

DatabaseSeeder::seeders()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Arcanesoft\Backups\Database;
6
7
use Arcanesoft\Backups\Database\Seeders\{PermissionsSeeder, RolesSeeder};
8
use Arcanesoft\Foundation\Support\Database\Seeder;
9
10
/**
11
 * Class     DatabaseSeeder
12
 *
13
 * @author   ARCANEDEV <[email protected]>
14
 */
15
class DatabaseSeeder extends Seeder
16
{
17
    /* -----------------------------------------------------------------
18
     |  Main Methods
19
     | -----------------------------------------------------------------
20
     */
21
22
    /**
23
     * Get the seeders.
24
     *
25
     * @return array
26
     */
27
    public function seeders(): array
28
    {
29
        return [
30
            PermissionsSeeder::class,
31
            RolesSeeder::class,
32
        ];
33
    }
34
}
35