From 2b93963f3445630c170d13daeed5e653c1ac2694 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 15 Oct 2011 14:19:33 -0500 Subject: [PATCH] removed unnecessary namespace import from eloquent model. --- application/routes.php | 1 - laravel/database/eloquent/model.php | 1 - 2 files changed, 2 deletions(-) diff --git a/application/routes.php b/application/routes.php index ff11a9b9..56ea31be 100644 --- a/application/routes.php +++ b/application/routes.php @@ -39,7 +39,6 @@ 'GET /' => function() { - return Laravel\Str::limit('This is a string of text', 3, '...'); return View::make('home.index'); }, diff --git a/laravel/database/eloquent/model.php b/laravel/database/eloquent/model.php index d204cfc9..60283d82 100644 --- a/laravel/database/eloquent/model.php +++ b/laravel/database/eloquent/model.php @@ -1,6 +1,5 @@