Completed
Push — dev ( 4f2a6c...9be7c7 )
by Nicolas
04:25 queued 01:47
created
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.
fields/field.entry_relationship.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -1508,6 +1508,9 @@  discard block
 block discarded – undo
1508 1508
 			return true;
1509 1509
 		}
1510 1510
 		
1511
+		/**
1512
+		 * @return string
1513
+		 */
1511 1514
 		public static function update_103()
1512 1515
 		{
1513 1516
 			$tbl = self::FIELD_TBL_NAME;
@@ -1519,6 +1522,9 @@  discard block
 block discarded – undo
1519 1522
 			return Symphony::Database()->query($sql);
1520 1523
 		}
1521 1524
 		
1525
+		/**
1526
+		 * @return string
1527
+		 */
1522 1528
 		public static function update_200()
1523 1529
 		{
1524 1530
 			$tbl = self::FIELD_TBL_NAME;
@@ -1540,6 +1546,9 @@  discard block
 block discarded – undo
1540 1546
 			return Symphony::Database()->query($sql);
1541 1547
 		}
1542 1548
 		
1549
+		/**
1550
+		 * @return string
1551
+		 */
1543 1552
 		public static function update_2008()
1544 1553
 		{
1545 1554
 			$tbl = self::FIELD_TBL_NAME;
Please login to merge, or discard this patch.
lib/class.erfxsltutilities.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -7,6 +7,12 @@
 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
+		 *
14
+		 * @return string
15
+		 */
10 16
 		public static function processXSLT($parentField, $entry, $entrySectionHandle, $entryFields, $mode, $debug = false, $select = 'entry', $position = 0)
11 17
 		{
12 18
 			$date = new DateTime();
Please login to merge, or discard this patch.