WunderGround::getCacheKeyCurrent()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 1
crap 2
1
<?php
2
/**
3
 *
4
 * PHP version 5.5
5
 *
6
 * @package Forecast
7
 * @author  Sergey V.Kuzin <[email protected]>
8
 * @license MIT
9
 */
10
11
namespace Forecast;
12
13
14
use Forecast\Helper\Point;
15
16
class WunderGround extends WeatherAbstract
17
{
18
19
    /**
20
     * @param Point $point
21
     *
22
     * @internal
23
     * @return Current
24
     */
25
    protected function doFetchCurrent(Point $point)
26
    {
27
        // TODO: Implement doFetchCurrent() method.
28
    }
29
30
    /**
31
     * @param Point $point
32
     * @return Hourly
33
     */
34
    protected function doFetchHourly(Point $point)
35
    {
36
        // TODO: Implement doFetchHourly() method.
37
    }
38
39
    /**
40
     * @param Point $point
41
     *
42
     * @internal
43
     * @return string
44
     */
45
    protected function getCacheKeyCurrent(Point $point)
46
    {
47
        // TODO: Implement getCacheKeyCurrent() method.
48
    }
49
50
    /**
51
     * @param Point $point
52
     *
53
     * @internal
54
     * @return string
55
     */
56
    protected function getCacheKeyHourly(Point $point)
57
    {
58
        // TODO: Implement getCacheKeyHourly() method.
59
    }
60
61
    /**
62
     *
63
     * @internal
64
     * @return \DateTime
65
     */
66
    protected function getCacheExpirationCurrent()
67
    {
68
        // TODO: Implement getCacheExpirationCurrent() method.
69
    }
70
71
    /**
72
     *
73
     * @internal
74
     * @return \DateTime
75
     */
76
    protected function getCacheExpirationHourly()
77
    {
78
        // TODO: Implement getCacheExpirationHourly() method.
79
    }
80
}
81