Completed
Push — master ( 64ed1a...f84f64 )
by Joshua
06:33
created
src/Resolver.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Vessel\Render;
4 4
 
5
-use GuzzleHttp\Client;
6
-use Journey\Cache\Adapters\LocalAdapter;
7 5
 use Journey\Cache\CacheAdapterInterface;
8 6
 use Psr\Http\Message\ResponseInterface;
9 7
 use Psr\Http\Message\ServerRequestInterface;
Please login to merge, or discard this patch.
src/PageApi.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      * Get a particular page from the api.
39 39
      *
40 40
      * @param  string $path path of the page
41
-     * @return array|false
41
+     * @return \Psr\Http\Message\ResponseInterface|null
42 42
      */
43 43
     public function getPage($path)
44 44
     {
@@ -48,6 +48,8 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * Call a particular api endpoint.
50 50
      *
51
+     * @param string $method
52
+     * @param string $url
51 53
      * @return \Psr\Http\Message\ResponseInterface
52 54
      */
53 55
     public function call($method, $url)
Please login to merge, or discard this patch.
src/Renderer.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,8 @@  discard block
 block discarded – undo
83 83
     /**
84 84
      * Add a single directory to the template engine.
85 85
      *
86
-     * @param  string $directories directory of templates
86
+     * @param  string $directory directory of templates
87
+     * @param string $theme
87 88
      * @return $this
88 89
      */
89 90
     public function registerTheme($theme, $directory)
@@ -99,7 +100,7 @@  discard block
 block discarded – undo
99 100
     /**
100 101
      * Returns the template rendering engine.
101 102
      *
102
-     * @return League\Plates\Engine
103
+     * @return Engine
103 104
      */
104 105
     public function getEngine()
105 106
     {
Please login to merge, or discard this patch.