Passed
Push — master ( dc84f9...9c30aa )
by Jip
06:42
created
classes/stencil/abstract-hierarchy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
classes/stencil/handler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
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 ) {
Please login to merge, or discard this patch.
classes/stencil/recorder-interface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -11,6 +11,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
classes/stencil/implementation-interface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -11,6 +11,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.