Completed
Push — master ( 224ae7...80285a )
by Gareth
13:38
created

StashReader::readFromCache()   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 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 readFromCache(String $pageName): TldrPage
23
    {
24
        // TODO: Implement readFromCache() method.
25
    }
26
}
27