Completed
Push — master ( 11c186...54c7de )
by Gareth
13:43
created

StashReader::getPageList()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: garethellis
5
 * Date: 30/01/2016
6
 * Time: 20:11
7
 */
8
9
namespace GarethEllis\Tldr\Cache;
10
11
use GarethEllis\Tldr\Page\TldrPage;
12
13
class StashReader implements CacheReaderInterface
14
{
15
    /**
16
     * CacheReader constructor.
17
     */
18
    public function __construct()
19
    {
20
    }
21
22
    public function getPageList(): array
23
    {
24
        // TODO: Implement getPageList() method.
25
    }
26
27
    public function readFromCache(String $platform, String $pageName): TldrPage
28
    {
29
        // TODO: Implement readFromCache() method.
30
    }
31
}
32