Passed
Branch master (9963ba)
by Brian
03:22
created

FeatureRequestsController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 13
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A initialize() 0 6 1
1
<?php
2
3
/**
4
 * FeatureRequestsController
5
 */
6
7
namespace Fr3nch13\Jira\Controller;
8
9
use Fr3nch13\Jira\Controller\AppController;
10
use Fr3nch13\Jira\Form\FeatureRequestForm as JiraForm;
11
12
/**
13
 * Feature Requests Controller
14
 *
15
 * Frontend for submitting feature requests to Jira.
16
 */
17
18
class FeatureRequestsController extends AppController
19
{
20
    /**
21
     * Initialize method
22
     *
23
     * @return void
24
     */
25
    public function initialize()
26
    {
27
        parent::initialize();
28
29
        $this->humanName = __('Feature Request');
30
        $this->JiraForm = new JiraForm();
31
    }
32
}
33