Completed
Push — master ( f940d4...11c186 )
by Gareth
12:02
created
src/Fetcher/RemoteFetcher.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Fetch a page from remote repository
51 51
      *
52
-     * @param string $page
53
-     * @return string
52
+     * @return TldrPage
54 53
      * @throws PageNotFoundException
55 54
      */
56 55
     public function fetchPage(String $pageName): TldrPage
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace GarethEllis\Tldr\Fetcher;
4 4
 
5
+use GarethEllis\Tldr\Cache\CacheWriterInterface;
5 6
 use GarethEllis\Tldr\Fetcher\Exception\PageNotFoundException;
7
+use GarethEllis\Tldr\Fetcher\Exception\RemoteFetcherException;
6 8
 use GarethEllis\Tldr\Page\TldrPage;
7 9
 use GuzzleHttp\Client;
8
-use GarethEllis\Tldr\Cache\CacheWriterInterface;
9
-use GarethEllis\Tldr\Fetcher\Exception\RemoteFetcherException;
10 10
 
11 11
 /**
12 12
  * Class RemoteFetcher
Please login to merge, or discard this patch.