Completed
Push — master ( 3cc9b0...d35865 )
by Timur
02:56
created

GetConfigFileCommand::requestMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Laravel\Forge\Configs\Commands;
4
5
use Laravel\Forge\Commands\RawBodyResponseTrait;
6
use Laravel\Forge\Commands\NotSupportingResourceClassTrait;
7
8
class GetConfigFileCommand extends ConfigFileCommand
9
{
10
    use NotSupportingResourceClassTrait, RawBodyResponseTrait;
11
12
    /**
13
     * HTTP request method.
14
     *
15
     * @return string
16
     */
17
    public function requestMethod()
18
    {
19
        return 'GET';
20
    }
21
}
22