DatabaseSeeder
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 17
1
<?php namespace Arcanesoft\Blog\Seeds;
2
3
use Arcanedev\Support\Bases\Seeder;
4
5
/**
6
 * Class     DatabaseSeeder
7
 *
8
 * @package  Arcanesoft\Blog\Seeds
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class DatabaseSeeder extends Seeder
0 ignored issues
show
Deprecated Code introduced by
The class Arcanedev\Support\Bases\Seeder has been deprecated with message: Use the `Arcanedev\Support\Database\Seeder` instead.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
12
{
13
    /* -----------------------------------------------------------------
14
     |  Properties
15
     | -----------------------------------------------------------------
16
     */
17
18
    /**
19
     * Seeders collection.
20
     *
21
     * @var array
22
     */
23
    protected $seeds = [
24
        PermissionsTableSeeder::class,
25
        RolesTableSeeder::class,
26
    ];
27
}
28