Completed
Push — master ( 4357e0...f8eea4 )
by arto
02:30
created

SetTimeOutInSeconds::identifier()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Net\Bazzline\Component\Curl\Option\Behaviour;
4
5
use Net\Bazzline\Component\Curl\Option\AbstractSetOptionIntValue;
6
7
class SetTimeOutInSeconds extends AbstractSetOptionIntValue
8
{
9
    /**
10
     * @return int
11
     */
12
    public function identifier()
13
    {
14
        return CURLOPT_TIMEOUT;
15
    }
16
}
17