Completed
Push — master ( feca77...694826 )
by Ingo
11:47
created
admin/code/LeftAndMain.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	/**
187 187
 	 * Gets the combined configuration of all LeafAndMain subclasses required by the client app.
188 188
 	 *
189
-	 * @return array
189
+	 * @return string
190 190
 	 *
191 191
 	 * WARNING: Experimental API
192 192
 	 */
@@ -876,6 +876,7 @@  discard block
 block discarded – undo
876 876
 	 * Return a list of appropriate templates for this class, with the given suffix using
877 877
 	 * {@link SSViewer::get_templates_by_class()}
878 878
 	 *
879
+	 * @param string $suffix
879 880
 	 * @return array
880 881
 	 */
881 882
 	public function getTemplatesWithSuffix($suffix) {
@@ -1745,7 +1746,7 @@  discard block
 block discarded – undo
1745 1746
 	 * The controller might not have any previewable content, in which case
1746 1747
 	 * this method returns FALSE.
1747 1748
 	 *
1748
-	 * @return String|boolean
1749
+	 * @return boolean
1749 1750
 	 */
1750 1751
 	public function LinkPreview() {
1751 1752
 		return false;
@@ -1932,7 +1933,7 @@  discard block
 block discarded – undo
1932 1933
 	}
1933 1934
 
1934 1935
 	/**
1935
-	 * @return String
1936
+	 * @return DBField
1936 1937
 	 */
1937 1938
 	public function Locale() {
1938 1939
 		return DBField::create_field('Locale', i18n::get_locale());
@@ -2098,6 +2099,9 @@  discard block
 block discarded – undo
2098 2099
 		return (parent::isFinished() || $this->isFinished);
2099 2100
 	}
2100 2101
 
2102
+	/**
2103
+	 * @param boolean $bool
2104
+	 */
2101 2105
 	public function setIsFinished($bool) {
2102 2106
 		$this->isFinished = $bool;
2103 2107
 	}
Please login to merge, or discard this patch.