Completed
Branch master (37b207)
by Helmut
10:03 queued 16s
created
src/Form.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -237,7 +237,6 @@  discard block
 block discarded – undo
237 237
     /**
238 238
      * Add default models to the form.
239 239
      *
240
-     * @param  mixed  $model
241 240
      * @return void
242 241
      */
243 242
     public function defaults() 
@@ -457,7 +456,7 @@  discard block
 block discarded – undo
457 456
      * Check if a type exists.
458 457
      *
459 458
      * @param  string  $type
460
-     * @return string
459
+     * @return boolean
461 460
      */
462 461
     public function typeExists($type)
463 462
     {
@@ -1072,7 +1071,7 @@  discard block
 block discarded – undo
1072 1071
      *
1073 1072
      * @param  string  $method
1074 1073
      * @param  array  $parameters
1075
-     * @return mixed
1074
+     * @return Fields\Field|null
1076 1075
      */
1077 1076
     public function __call($method, $parameters)
1078 1077
     {
Please login to merge, or discard this patch.
src/Plugin.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
      * Get autoload path.
37 37
      *
38
+     * @param string $append
38 39
      * @return string
39 40
      */
40 41
 	public function path($append = null) 
@@ -46,7 +47,7 @@  discard block
 block discarded – undo
46 47
 	/**
47 48
      * Get paths to templates.
48 49
      *
49
-     * @return string
50
+     * @return string[]
50 51
      */
51 52
 	public function templatePaths() 
52 53
 	{
Please login to merge, or discard this patch.
src/Renderer.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
 	/**
71 71
      * Create a template cache key.
72 72
      *
73
-	 * @param  string  $name
74 73
 	 * @param  array  $paths
74
+	 * @param string $template
75 75
      * @return string
76 76
      */	
77 77
 	public function key($template, $paths) 
@@ -100,7 +100,6 @@  discard block
 block discarded – undo
100 100
 	/**
101 101
      * Check if a template exists.
102 102
      *
103
-	 * @param  string  $key
104 103
 	 * @param  string  $template
105 104
 	 * @param  array  $paths
106 105
      * @return boolean
Please login to merge, or discard this patch.