| 1 | <?php |
||
| 6 | class RudraSeeder extends AbstractSeed |
||
|
1 ignored issue
–
show
|
|||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Run Method. |
||
| 10 | * |
||
| 11 | * Write your database seeder using this method. |
||
| 12 | * |
||
| 13 | * More information on writing seeders is available here: |
||
| 14 | * http://docs.phinx.org/en/latest/seeding.html |
||
| 15 | */ |
||
| 16 | public function run() |
||
| 20 | } |
||
| 21 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.