From 2bcf7ed327d0b38ad91dcdfcaf53e44d62181f6d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 11 Jun 2011 23:17:37 -0500 Subject: [PATCH] removed with method from view class. --- system/view.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/system/view.php b/system/view.php index 48c3229b..7844ed44 100644 --- a/system/view.php +++ b/system/view.php @@ -83,18 +83,6 @@ public function bind($key, $value) 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. *