removed unnecessary namespace import from eloquent model.

This commit is contained in:
Taylor Otwell 2011-10-15 14:19:33 -05:00
parent 17ea09364d
commit 2b93963f34
2 changed files with 0 additions and 2 deletions

View File

@ -39,7 +39,6 @@
'GET /' => function() 'GET /' => function()
{ {
return Laravel\Str::limit('This is a string of text', 3, '...');
return View::make('home.index'); return View::make('home.index');
}, },

View File

@ -1,6 +1,5 @@
<?php namespace Laravel\Database\Eloquent; <?php namespace Laravel\Database\Eloquent;
use Laravel\IoC;
use Laravel\Str; use Laravel\Str;
use Laravel\Inflector; use Laravel\Inflector;
use Laravel\Paginator; use Laravel\Paginator;