Browse Source

Remove comment bloat from dynamic query builder.

Taylor Otwell 13 years ago
parent
commit
a5af988d53
1 changed files with 4 additions and 15 deletions
  1. 4 15
      system/db/query/dynamic.php

+ 4 - 15
system/db/query/dynamic.php

@@ -14,32 +14,21 @@ class Dynamic {
 	 */
 	public static function build($method, $parameters, $query)
 	{
-		// ---------------------------------------------------------
 		// Strip the "where_" off of the method.
-		// ---------------------------------------------------------
 		$finder = substr($method, 6);
 
-		// ---------------------------------------------------------
 		// Split the column names from the connectors.
-		// ---------------------------------------------------------
 		$segments = preg_split('/(_and_|_or_)/i', $finder, -1, PREG_SPLIT_DELIM_CAPTURE);
 
-		// ---------------------------------------------------------
-		// The connector variable will determine which connector
-		// will be used for the condition. We'll change it as we
-		// come across new connectors in the dynamic method string.
+		// The connector variable will determine which connector will be used for the condition.
+		// We'll change it as we come across new connectors in the dynamic method string.
 		//
-		// The index variable helps us get the correct parameter
-		// value for the where condition. We increment it each time
-		// we add a condition.
-		// ---------------------------------------------------------
+		// The index variable helps us get the correct parameter value for the where condition.
+		// We increment it each time we add a condition.
 		$connector = 'AND';
 
 		$index = 0;
 
-		// ---------------------------------------------------------
-		// Iterate through each segment and add the conditions.
-		// ---------------------------------------------------------
 		foreach ($segments as $segment)
 		{
 			if ($segment != '_and_' and $segment != '_or_')