Browse Source

removed with method from view class.

Taylor Otwell 14 years ago
parent
commit
2bcf7ed327
1 changed files with 0 additions and 12 deletions
  1. 0 12
      system/view.php

+ 0 - 12
system/view.php

@@ -83,18 +83,6 @@ class View {
 		return $this;
 	}
 
-	/**
-	 * Merge an array into the view data.
-	 *
-	 * @param  array  $data
-	 * @return View
-	 */
-	public function with($data)
-	{
-		$this->data = array_merge($this->data, $data);
-		return $this;
-	}
-
 	/**
 	 * Get the parsed content of the view.
 	 *