Test Failed
Push — master ( 1eee01...3150c9 )
by Gabor
02:29
created

ApplicationEditForm::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 44
Code Lines 31

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 31
nc 1
nop 0
dl 0
loc 44
rs 9.424
c 0
b 0
f 0
1
<?php
2
/**
3
 * WebHemi.
4
 *
5
 * PHP version 7.1
6
 *
7
 * @copyright 2012 - 2018 Gixx-web (http://www.gixx-web.com)
8
 * @license   https://opensource.org/licenses/MIT The MIT License (MIT)
9
 *
10
 * @link http://www.gixx-web.com
11
 */
12
declare(strict_types = 1);
13
14
namespace WebHemi\Form\Preset;
15
16
/**
17
 * Class ApplicationEditForm
18
 *
19
 * @codeCoverageIgnore - only composes an object.
20
 */
21
class ApplicationEditForm extends ApplicationCreateForm
22
{
23
    /**
24
     * Initialize the adapter
25
     */
26
    protected function initAdapter()
27
    {
28
        $this->formAdapter->initialize('application', '[URL]', 'PUT');
29
    }
30
}
31