Completed
Push — master ( 316004...c694bc )
by Andrew
03:04
created
app/classy/classy-config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 	/**
13 13
 	 * Returns list of allowed variables that can be used in theme config
14 14
 	 * 
15
-	 * @return array
15
+	 * @return string[]
16 16
 	 */
17 17
 	private static function get_allowed_variables() {
18 18
 		
Please login to merge, or discard this patch.
app/classy/classy.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,6 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * 
55 55
 	 * @param  string
56 56
 	 * @param  string
57
+	 * @param string $name
57 58
 	 */
58 59
 	private function define( $name, $value ) {
59 60
 		if ( !defined($name) ) {
@@ -241,7 +242,7 @@  discard block
 block discarded – undo
241 242
 
242 243
 	/**
243 244
 	 * @param array   $prefs
244
-	 * @return array mixed
245
+	 * @return stdClass mixed
245 246
 	 */
246 247
 	public static function get_pagination( $prefs = array() ) {
247 248
 		global $wp_query;
Please login to merge, or discard this patch.
app/models/classy-user.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -61,6 +61,9 @@
 block discarded – undo
61 61
 		$this->init();
62 62
 	}
63 63
 
64
+	/**
65
+	 * @param integer|null $uid
66
+	 */
64 67
 	private function verify_id($uid) {
65 68
 		return $uid;
66 69
 	}
Please login to merge, or discard this patch.
app/classy/classy-comment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	/**
63 63
 	 * Returns ClassyUser object of comment author
64 64
 	 * 
65
-	 * @return object ClassyUser
65
+	 * @return ClassyUser ClassyUser
66 66
 	 */
67 67
 	public function author() {
68 68
 		
Please login to merge, or discard this patch.
app/classy/classy-hierarchy.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	 * Checks if view exists
112 112
 	 * 
113 113
 	 * @param  string $type view/scope
114
-	 * @param  string $view in blade path format, ex: layout/header
114
+	 * @param string|false $file
115 115
 	 * @return boolean true/false
116 116
 	 */
117 117
 	public static function file_exists($type = 'view', $file) {
@@ -129,8 +129,9 @@  discard block
 block discarded – undo
129 129
 	 * Returns view name for render, based on type of request
130 130
 	 *
131 131
 	 * @param  string $type view/scope
132
-	 * @param  string $type 
133
-	 * @return array 
132
+	 * @param  string $type
133
+	 * @param string $page 
134
+	 * @return string|false 
134 135
 	 */
135 136
 	public static function get_available_file($type = 'view', $page) {
136 137
 
@@ -378,7 +379,7 @@  discard block
 block discarded – undo
378 379
 	/**
379 380
 	 * Returns classy template name or boolean if this is not classy template
380 381
 	 * 
381
-	 * @return mixed
382
+	 * @return string|false
382 383
 	 */
383 384
 	public static function get_classy_template() {
384 385
 
Please login to merge, or discard this patch.
app/classy/classy-scope.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -43,6 +43,7 @@
 block discarded – undo
43 43
 	/**
44 44
 	 * Extends Scope with scope that is defined in theme_name/scope folder
45 45
 	 * 
46
+	 * @param string|false $view_name
46 47
 	 * @return array
47 48
 	 */
48 49
 	public static function extend_scope($scope, $view_name) {
Please login to merge, or discard this patch.