Skip to content

Commit

Permalink
tweak interfaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 5, 2012
1 parent a931efd commit 50eb3a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Eloquent/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use ArrayAccess;
use ArrayIterator;
use IteratorAggregate;
use Illuminate\Support\JsonableInterface;
use Illuminate\Support\Contracts\JsonableInterface;

class Collection implements ArrayAccess, ArrayableInterface, Countable, IteratorAggregate, JsonableInterface {

Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Eloquent/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
use Closure;
use DateTime;
use Illuminate\Database\Connection;
use Illuminate\Support\JsonableInterface;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Contracts\JsonableInterface;
use Illuminate\Database\Eloquent\Relations\MorphOne;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
Expand Down

0 comments on commit 50eb3a7

Please sign in to comment.