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

StashReader   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0
Metric Value
dl 0
loc 19
wmc 3
lcom 0
cbo 0
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getPageList() 0 4 1
A readFromCache() 0 4 1
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