Skip to content

Commit 7963072

Browse files
authored
Fix syntax (#231)
1 parent 7a450ee commit 7963072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/collection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ The `DataFeed` class mimics a regular model and supports `limit` and `paginate`
193193
The next example will combine the User, Post and Comment models in to a single collection and returns the first 10 records.
194194

195195
```php
196-
$feed = new Winter\Storm\Database\DataFeed;
196+
$feed = new \Winter\Storm\Database\DataFeed;
197197
$feed->add('user', new User);
198198
$feed->add('post', Post::where('category_id', 7));
199199

0 commit comments

Comments
 (0)