VueWorkflowController::demo()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php namespace Bantenprov\VueWorkflow\Http\Controllers;
2
3
use App\Http\Controllers\Controller;
4
use Illuminate\Http\Request;
5
use Bantenprov\VueWorkflow\Facades\VueWorkflow;
6
use Bantenprov\VueWorkflow\Models\VueWorkflowModel;
7
8
/**
9
 * The VueWorkflowController class.
10
 *
11
 * @package Bantenprov\VueWorkflow
12
 * @author  bantenprov <[email protected]>
13
 */
14
class VueWorkflowController extends Controller
15
{
16
    public function demo()
17
    {
18
        return VueWorkflow::welcome();
19
    }
20
}
21