Completed
Push — master ( 7f5bc2...d69698 )
by Justin
02:32
created
src/Renderer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,7 +84,8 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * Add a single directory to the template engine.
86 86
      *
87
-     * @param  string $directories directory of templates
87
+     * @param  string $directory directory of templates
88
+     * @param string $theme
88 89
      * @return $this
89 90
      */
90 91
     public function registerTheme($theme, $directory)
@@ -100,7 +101,7 @@  discard block
 block discarded – undo
100 101
     /**
101 102
      * Returns the template rendering engine.
102 103
      *
103
-     * @return League\Plates\Engine
104
+     * @return Engine
104 105
      */
105 106
     public function getEngine()
106 107
     {
@@ -159,7 +160,6 @@  discard block
 block discarded – undo
159 160
     /**
160 161
      * Returns the image url on the vssl server.
161 162
      *
162
-     * @param  string $imageName hash.extension
163 163
      * @param  string $style     image style name
164 164
      * @return string
165 165
      */
Please login to merge, or discard this patch.
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 Vssl\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   +2 added lines patch added patch discarded remove patch
@@ -88,6 +88,8 @@
 block discarded – undo
88 88
     /**
89 89
      * Call a particular api endpoint.
90 90
      *
91
+     * @param string $method
92
+     * @param string $url
91 93
      * @return \Psr\Http\Message\ResponseInterface|false
92 94
      */
93 95
     public function call($method, $url)
Please login to merge, or discard this patch.