Passed
Push — develop ( 37b65a...9b346b )
by Paul
03:39
created
src/Container.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -16,18 +16,18 @@  discard block
 block discarded – undo
16 16
 	 */
17 17
 	protected static $instance;
18 18
 
19
-    /**
20
-     * The container's bound services.
21
-     *
22
-     * @var array
23
-     */
19
+	/**
20
+	 * The container's bound services.
21
+	 *
22
+	 * @var array
23
+	 */
24 24
 	protected $services = [];
25 25
 
26
-    /**
27
-     * The container's bucket items
28
-     *
29
-     * @var array
30
-     */
26
+	/**
27
+	 * The container's bucket items
28
+	 *
29
+	 * @var array
30
+	 */
31 31
 	protected $bucket = [];
32 32
 
33 33
 	/**
@@ -123,10 +123,10 @@  discard block
 block discarded – undo
123 123
 	}
124 124
 
125 125
    /**
126
-	 * Register a Provider.
127
-	 *
128
-	 * @return void
129
-	 */
126
+    * Register a Provider.
127
+    *
128
+    * @return void
129
+    */
130 130
 	public function register( $provider )
131 131
 	{
132 132
 		$provider->register( $this );
Please login to merge, or discard this patch.
src/MetaBox/ArchiveMetaManager.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 	/**
23 23
 	 * @param string|null $key
24 24
 	 * @param mixed $fallback
25
-	 * @param string $type
26 25
 	 * @return mixed
27 26
 	 */
28 27
 	public function get( $key = '', $fallback = null, $group = '' )
Please login to merge, or discard this patch.
src/MetaBox/Instruction.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -84,6 +84,7 @@
 block discarded – undo
84 84
 	abstract public function filter();
85 85
 
86 86
 	/**
87
+	 * @param boolean $bool
87 88
 	 * @return bool
88 89
 	 * @filter rwmb_show
89 90
 	 */
Please login to merge, or discard this patch.
src/Settings/RWMetaBox.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -13,6 +13,10 @@
 block discarded – undo
13 13
 	protected $pollux_hook;
14 14
 	protected $pollux_id;
15 15
 
16
+	/**
17
+	 * @param string $id
18
+	 * @param string $hook
19
+	 */
16 20
 	public function __construct( $metabox, $id = null, $hook = null )
17 21
 	{
18 22
 		parent::__construct( $metabox );
Please login to merge, or discard this patch.