@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * Set the options |
31 | 31 | * |
32 | - * @param array $options Set the options available. |
|
32 | + * @param string[] $options Set the options available. |
|
33 | 33 | */ |
34 | 34 | protected function set_options( $options ) { |
35 | 35 | $this->options = $options; |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | /** |
56 | 56 | * Return the key of the current element |
57 | 57 | * |
58 | - * @return mixed|null scalar on success, null on failure. |
|
58 | + * @return integer scalar on success, null on failure. |
|
59 | 59 | */ |
60 | 60 | public function key() { |
61 | 61 | return $this->index; |
@@ -66,7 +66,7 @@ |
||
66 | 66 | /** |
67 | 67 | * Control loading the wp_head and wp_footer into variable |
68 | 68 | * |
69 | - * @param bool|true $yes_or_no Wheter to load them or not. |
|
69 | + * @param boolean $yes_or_no Wheter to load them or not. |
|
70 | 70 | */ |
71 | 71 | public function load_wp_header_and_footer( $yes_or_no = true ) { |
72 | 72 | if ( $this->load_wp_header_and_footer === $yes_or_no ) { |
@@ -11,6 +11,7 @@ |
||
11 | 11 | interface Stencil_Recorder_Interface { |
12 | 12 | /** |
13 | 13 | * Start capturing output buffer |
14 | + * @return void |
|
14 | 15 | */ |
15 | 16 | public function start_recording(); |
16 | 17 |
@@ -11,6 +11,7 @@ |
||
11 | 11 | interface Stencil_Recorder_Interface { |
12 | 12 | /** |
13 | 13 | * Start capturing output buffer |
14 | + * @return void |
|
14 | 15 | */ |
15 | 16 | public function start_recording(); |
16 | 17 |