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

StashReader   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0
Metric Value
dl 0
loc 14
wmc 2
lcom 0
cbo 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 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 readFromCache(String $pageName): TldrPage
23
    {
24
        // TODO: Implement readFromCache() method.
25
    }
26
}
27