Commit 2b93963f by Taylor Otwell

removed unnecessary namespace import from eloquent model.

parent 17ea0936
...@@ -39,7 +39,6 @@ return array( ...@@ -39,7 +39,6 @@ return array(
'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');
}, },
......
<?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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment