Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 8 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
11 | View Code Duplication | public static function simpleGet( string $action, array $params = [], array $headers = [] ): self { |
|
12 | $req = new self(); |
||
13 | $req->setMethod( 'GET' ); |
||
14 | $req->setAction( $action ); |
||
15 | $req->addParams( $params ); |
||
16 | $req->setHeaders( $headers ); |
||
17 | return $req; |
||
18 | } |
||
19 | |||
30 |