Completed
Push — 186-data ( 572d68...d14d7f )
by
unknown
10:34
created
src/Template/include.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
     };
33 33
 }
34 34
 
35
+/**
36
+ * @param \Closure $include
37
+ */
35 38
 function validatePathInclude($include, $file_exists = 'file_exists') {
36 39
     return function($path, array $vars) use ($include, $file_exists) {
37 40
         if (!$file_exists($path)) {
Please login to merge, or discard this patch.
src/RenderTemplate/FileSystemRenderTemplate.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace League\Plates\RenderTemplate;
4 4
 
5
+use Exception;
5 6
 use League\Plates;
6 7
 use Throwable;
7
-use Exception;
8 8
 
9 9
 final class FileSystemRenderTemplate implements Plates\RenderTemplate
10 10
 {
Please login to merge, or discard this patch.
src/Extension/Data/resolve-data.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 League\Plates\Extension\Data;
4 4
 
5
-use League\Plates\HydrateTemplate\CallableHydrateTemplate;
6
-
7 5
 function idResolveData() {
8 6
     return function(ResolveDataArgs $args) {
9 7
         return $args->data;
Please login to merge, or discard this patch.