Completed
Push — master ( 37b207...7906ee )
by Helmut
37:09
created
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.
src/Form.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -236,7 +236,6 @@  discard block
 block discarded – undo
236 236
     /**
237 237
      * Add default models to the form.
238 238
      *
239
-     * @param  mixed  $model
240 239
      * @return void
241 240
      */
242 241
     public function defaults() 
@@ -333,7 +332,7 @@  discard block
 block discarded – undo
333 332
     /**
334 333
      * Fill a model with values.
335 334
      *
336
-     * @param  object  $model
335
+     * @param  \stdClass  $model
337 336
      * @param  array  $names
338 337
      */
339 338
     public function fill($model, $names = null)
@@ -456,7 +455,7 @@  discard block
 block discarded – undo
456 455
      * Check if a type exists.
457 456
      *
458 457
      * @param  string  $type
459
-     * @return string
458
+     * @return boolean
460 459
      */
461 460
     public function typeExists($type)
462 461
     {
@@ -1071,7 +1070,7 @@  discard block
 block discarded – undo
1071 1070
      *
1072 1071
      * @param  string  $method
1073 1072
      * @param  array  $parameters
1074
-     * @return mixed
1073
+     * @return Fields\Field|null
1075 1074
      */
1076 1075
     public function __call($method, $parameters)
1077 1076
     {
Please login to merge, or discard this patch.