Completed
Push — dev ( 3e67bb...5210b7 )
by Nicolas
01:15
created
fields/field.entry_relationship.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -1310,6 +1310,9 @@  discard block
 block discarded – undo
1310 1310
 			return true;
1311 1311
 		}
1312 1312
 		
1313
+		/**
1314
+		 * @return string
1315
+		 */
1313 1316
 		public static function update_103()
1314 1317
 		{
1315 1318
 			$tbl = self::FIELD_TBL_NAME;
@@ -1321,6 +1324,9 @@  discard block
 block discarded – undo
1321 1324
 			return Symphony::Database()->query($sql);
1322 1325
 		}
1323 1326
 		
1327
+		/**
1328
+		 * @return string
1329
+		 */
1324 1330
 		public static function update_200()
1325 1331
 		{
1326 1332
 			$tbl = self::FIELD_TBL_NAME;
Please login to merge, or discard this patch.
fields/field.reverse_relationship.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -412,6 +412,9 @@
 block discarded – undo
412 412
         ");
413 413
     }
414 414
 
415
+    /**
416
+     * @return string
417
+     */
415 418
     public static function update_200()
416 419
     {
417 420
         return static::createFieldTable();
Please login to merge, or discard this patch.
lib/class.erfxsltutilities.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -7,6 +7,10 @@
 block discarded – undo
7 7
 	if(!defined("__IN_SYMPHONY__")) die("<h2>Error</h2><p>You cannot directly access this file</p>");
8 8
 	
9 9
 	class ERFXSLTUTilities {
10
+
11
+		/**
12
+		 * @param string $mode
13
+		 */
10 14
 		public static function processXSLT($parentField, $entry, $entrySectionHandle, $entryFields, $mode, $debug = false, $select = 'entry', $position = 0)
11 15
 		{
12 16
 			$date = new DateTime();
Please login to merge, or discard this patch.