Completed
Push — master ( 84f363...9ac54c )
by Peter
31:26 queued 06:26
created
src/Zamm.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,6 +154,9 @@  discard block
 block discarded – undo
154 154
 	 */
155 155
 	private $_di = null;
156 156
 
157
+	/**
158
+	 * @param string $className
159
+	 */
157 160
 	public function __construct($className = null)
158 161
 	{
159 162
 		$this->_className = $className;
@@ -223,7 +226,7 @@  discard block
 block discarded – undo
223 226
 
224 227
 	/**
225 228
 	 *
226
-	 * @return ClassRenderer
229
+	 * @return string
227 230
 	 */
228 231
 	public function __toString()
229 232
 	{
Please login to merge, or discard this patch.
src/DocBlock.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@
 block discarded – undo
74 74
 		return (string) $this->decorate($this->info->getDocComment());
75 75
 	}
76 76
 
77
+	/**
78
+	 * @param string $docBlock
79
+	 */
77 80
 	private function decorate($docBlock)
78 81
 	{
79 82
 
Please login to merge, or discard this patch.
src/ApiUrl.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -85,12 +85,18 @@  discard block
 block discarded – undo
85 85
 		}
86 86
 	}
87 87
 
88
+	/**
89
+	 * @param string $name
90
+	 */
88 91
 	public function method($name)
89 92
 	{
90 93
 		// https://df.home/zamm/api/class-Maslosoft.Zamm.Decorators.AbstractDecorator.html#_decorate
91 94
 		return sprintf('%s/class-%s.html#_%s', $this->resolveSource($this->resolveMethodClass($name)), $this->dotName, $name);
92 95
 	}
93 96
 
97
+	/**
98
+	 * @param string $name
99
+	 */
94 100
 	public function property($name)
95 101
 	{
96 102
 		// https://df.home/zamm/api/class-Maslosoft.Zamm.Zamm.html#$decorators
@@ -127,6 +133,9 @@  discard block
 block discarded – undo
127 133
 		return $this->className;
128 134
 	}
129 135
 
136
+	/**
137
+	 * @param string $className
138
+	 */
130 139
 	private function resolveSource($className)
131 140
 	{
132 141
 		// Many sources found, search for proper api source
Please login to merge, or discard this patch.