Completed
Pull Request — master (#5221)
by Christopher
22:26 queued 10:35
created
library/Translate/Adapter/thirdparty/sfYaml/lib/sfYamlInline.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,9 +159,9 @@
 block discarded – undo
159 159
   /**
160 160
    * Parses a scalar to a YAML string.
161 161
    *
162
-   * @param scalar  $scalar
162
+   * @param string  $scalar
163 163
    * @param string  $delimiters
164
-   * @param array   $stringDelimiter
164
+   * @param array   $stringDelimiters
165 165
    * @param integer $i
166 166
    * @param boolean $evaluate
167 167
    *
Please login to merge, or discard this patch.
view/SSTemplateParser.php 1 patch
Doc Comments   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -111,6 +111,8 @@  discard block
 block discarded – undo
111 111
 
112 112
 	/**
113 113
 	 * Override the function that constructs the result arrays to also prepare a 'php' item in the array
114
+	 * @param string $matchrule
115
+	 * @param string $name
114 116
 	 */
115 117
 	function construct($matchrule, $name, $arguments = null) {
116 118
 		$res = parent::construct($matchrule, $name, $arguments);
@@ -172,9 +174,9 @@  discard block
 block discarded – undo
172 174
 
173 175
 	/**
174 176
 	 * Ensures that the arguments to addOpenBlock and addClosedBlock are valid
175
-	 * @param $name
176
-	 * @param $callable
177
-	 * @param $type
177
+	 * @param string $name
178
+	 * @param callable $callable
179
+	 * @param string $type
178 180
 	 * @throws InvalidArgumentException
179 181
 	 */
180 182
 	protected function validateExtensionBlock($name, $callable, $type) {
@@ -737,6 +739,7 @@  discard block
 block discarded – undo
737 739
 	 * The basic generated PHP of LookupStep and LastLookupStep is the same, except that LookupStep calls 'obj' to
738 740
 	 * get the next ViewableData in the sequence, and LastLookupStep calls different methods (XML_val, hasValue, obj)
739 741
 	 * depending on the context the lookup is used in.
742
+	 * @param string $method
740 743
 	 */
741 744
 	function Lookup_AddLookupStep(&$res, $sub, $method) {
742 745
 		$res['LookupSteps'][] = $sub;
@@ -4691,8 +4694,8 @@  discard block
 block discarded – undo
4691 4694
 	 * Compiles some passed template source code into the php code that will execute as per the template source.
4692 4695
 	 *
4693 4696
 	 * @throws SSTemplateParseException
4694
-	 * @param  $string The source of the template
4695
-	 * @param string $templateName The name of the template, normally the filename the template source was loaded from
4697
+	 * @param  string $string The source of the template
4698
+	 * @param string string The name of the template, normally the filename the template source was loaded from
4696 4699
 	 * @param bool $includeDebuggingComments True is debugging comments should be included in the output
4697 4700
 	 * @param bool $topTemplate True if this is a top template, false if it's just a template
4698 4701
 	 * @return mixed|string The php that, when executed (via include or exec) will behave as per the template source
@@ -4732,6 +4735,7 @@  discard block
 block discarded – undo
4732 4735
 
4733 4736
 	/**
4734 4737
 	 * @param string $code
4738
+	 * @param string $templateName
4735 4739
 	 * @return string $code
4736 4740
 	 */
4737 4741
 	protected function includeDebuggingComments($code, $templateName) {
Please login to merge, or discard this patch.
view/SSViewer.php 1 patch
Doc Comments   +13 added lines, -4 removed lines patch added patch discarded remove patch
@@ -336,7 +336,6 @@  discard block
 block discarded – undo
336 336
 	/**
337 337
 	 * Returns the modulus of the numerical position of the item in the data set.
338 338
 	 * The count starts from $startIndex, which defaults to 1.
339
-	 * @param int $Mod The number to perform Mod operation to.
340 339
 	 * @param int $startIndex Number to start count from.
341 340
 	 * @return int
342 341
 	 */
@@ -410,6 +409,10 @@  discard block
 block discarded – undo
410 409
 		$this->underlay = $underlay ? $underlay : array();
411 410
 	}
412 411
 
412
+	/**
413
+	 * @param string $interfaceToQuery
414
+	 * @param string $variableMethod
415
+	 */
413 416
 	protected function createCallableArray(&$extraArray, $interfaceToQuery, $variableMethod, $createObject = false) {
414 417
 		$implementers = ClassInfo::implementorsOf($interfaceToQuery);
415 418
 		if($implementers) foreach($implementers as $implementer) {
@@ -751,7 +754,7 @@  discard block
 block discarded – undo
751 754
 	 *
752 755
 	 * @param $className string - valid class name
753 756
 	 * @param $suffix string
754
-	 * @param $baseClass string
757
+	 * @param string $baseClass string
755 758
 	 *
756 759
 	 * @return array
757 760
 	 */
@@ -1156,7 +1159,7 @@  discard block
 block discarded – undo
1156 1159
 	 * @param string $template Template name
1157 1160
 	 * @param mixed $data Data context
1158 1161
 	 * @param array $arguments Additional arguments
1159
-	 * @return string Evaluated result
1162
+	 * @return HTMLText Evaluated result
1160 1163
 	 */
1161 1164
 	public static function execute_template($template, $data, $arguments = null, $scope = null) {
1162 1165
 		$v = new SSViewer($template);
@@ -1182,6 +1185,9 @@  discard block
 block discarded – undo
1182 1185
 		return $v->process($data, $arguments);
1183 1186
 	}
1184 1187
 
1188
+	/**
1189
+	 * @param string $content
1190
+	 */
1185 1191
 	public function parseTemplateContent($content, $template="") {
1186 1192
 		return $this->getParser()->compileString(
1187 1193
 			$content,
@@ -1210,7 +1216,7 @@  discard block
 block discarded – undo
1210 1216
 	 * Return an appropriate base tag for the given template.
1211 1217
 	 * It will be closed on an XHTML document, and unclosed on an HTML document.
1212 1218
 	 *
1213
-	 * @param $contentGeneratedSoFar The content of the template generated so far; it should contain
1219
+	 * @param string $contentGeneratedSoFar The content of the template generated so far; it should contain
1214 1220
 	 * the DOCTYPE declaration.
1215 1221
 	 */
1216 1222
 	public static function get_base_tag($contentGeneratedSoFar) {
@@ -1251,6 +1257,9 @@  discard block
 block discarded – undo
1251 1257
 	 */
1252 1258
 	protected $cacheTemplate;
1253 1259
 
1260
+	/**
1261
+	 * @param string $content
1262
+	 */
1254 1263
 	public function __construct($content, TemplateParser $parser = null) {
1255 1264
 		if ($parser) {
1256 1265
 			$this->setParser($parser);
Please login to merge, or discard this patch.
thirdparty/jstree/_demo/_inc/class._database.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -97,6 +97,9 @@
 block discarded – undo
97 97
 		return $return;
98 98
 	}
99 99
 
100
+	/**
101
+	 * @param boolean $index
102
+	 */
100 103
 	function f($index) {
101 104
 		return stripslashes($this->row[$index]);
102 105
 	}
Please login to merge, or discard this patch.
thirdparty/Zend/Cache/Backend/Apc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
      * @param  string $mode clean mode
163 163
      * @param  array  $tags array of tags
164 164
      * @throws Zend_Cache_Exception
165
-     * @return boolean true if no problem
165
+     * @return boolean|null true if no problem
166 166
      */
167 167
     public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array())
168 168
     {
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Qt.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @param  string  $locale    Locale/Language to add data for, identical with locale identifier,
49 49
      *                            see Zend_Locale for more information
50 50
      * @param  string  $filename  XMLTM file to add, full path must be given for access
51
-     * @param  array   $option    OPTIONAL Options to use
51
+     * @param  array   $options    OPTIONAL Options to use
52 52
      * @throws Zend_Translation_Exception
53 53
      * @return array
54 54
      */
@@ -116,6 +116,9 @@  discard block
 block discarded – undo
116 116
         }
117 117
     }
118 118
 
119
+    /**
120
+     * @param string $filename
121
+     */
119 122
     private function _findEncoding($filename)
120 123
     {
121 124
         $file = file_get_contents($filename, null, null, 0, 100);
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Tbx.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @param  string  $locale    Locale/Language to add data for, identical with locale identifier,
49 49
      *                            see Zend_Locale for more information
50 50
      * @param  string  $filename  XMLTM file to add, full path must be given for access
51
-     * @param  array   $option    OPTIONAL Options to use
51
+     * @param  array   $options    OPTIONAL Options to use
52 52
      * @throws Zend_Translation_Exception
53 53
      * @return array
54 54
      */
@@ -116,6 +116,9 @@  discard block
 block discarded – undo
116 116
         }
117 117
     }
118 118
 
119
+    /**
120
+     * @param string $filename
121
+     */
119 122
     private function _findEncoding($filename)
120 123
     {
121 124
         $file = file_get_contents($filename, null, null, 0, 100);
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Xliff.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @param  string  $locale    Locale/Language to add data for, identical with locale identifier,
49 49
      *                            see Zend_Locale for more information
50 50
      * @param  string  $filename  XMLTM file to add, full path must be given for access
51
-     * @param  array   $option    OPTIONAL Options to use
51
+     * @param  array   $options    OPTIONAL Options to use
52 52
      * @throws Zend_Translation_Exception
53 53
      * @return array
54 54
      */
@@ -116,6 +116,9 @@  discard block
 block discarded – undo
116 116
         }
117 117
     }
118 118
 
119
+    /**
120
+     * @param string $filename
121
+     */
119 122
     private function _findEncoding($filename)
120 123
     {
121 124
         $file = file_get_contents($filename, null, null, 0, 100);
Please login to merge, or discard this patch.
core/ClassInfo.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
 	/**
40 40
 	 * @todo Move this to SS_Database or DB
41
+	 * @param string $class
41 42
 	 */
42 43
 	public static function hasTable($class) {
43 44
 		// Cache the list of all table names to reduce on DB traffic
@@ -219,6 +220,7 @@  discard block
 block discarded – undo
219 220
 
220 221
 	/**
221 222
 	 * Returns true if the given class implements the given interface
223
+	 * @param string $interfaceName
222 224
 	 */
223 225
 	public static function classImplements($className, $interfaceName) {
224 226
 		return in_array($className, self::implementorsOf($interfaceName));
@@ -269,6 +271,9 @@  discard block
 block discarded – undo
269 271
 
270 272
 	private static $method_from_cache = array();
271 273
 
274
+	/**
275
+	 * @param string $method
276
+	 */
272 277
 	public static function has_method_from($class, $method, $compclass) {
273 278
 		$lClass = strtolower($class);
274 279
 		$lMethod = strtolower($method);
Please login to merge, or discard this patch.