mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
18 lines
335 B
PHP
18 lines
335 B
PHP
<?php
|
|
|
|
namespace Helper;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
// here you can define custom actions
|
|
// all public methods declared in helper class will be available in $I
|
|
|
|
class Api extends \Codeception\Module
|
|
{
|
|
public function setupDatabase()
|
|
{
|
|
Artisan::call('migrate');
|
|
Artisan::call('db:seed');
|
|
}
|
|
}
|