Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Aug 21, 2019
1 parent a2b9366 commit 3fcbf00
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,21 +178,22 @@ the methods always return the same values for the same inputs.

| Methods | Return type | Source |
| ------------- | --------------------- | -------------- |
| `all` | array | [Collection.php](./src/Collection.php)
| `all` | array | [All.php](./src/Operation/All.php)
| `append` | new Collection object | [Append.php](./src/Operation/Append.php)
| `apply` | self | [Apply.php](./src/Operation/Apply.php)
| `chunk` | new Collection object | [Chunk.php](./src/Operation/Chunk.php)
| `collapse` | new Collection object | [Collapse.php](./src/Operation/Collapse.php)
| `combine` | new Collection object | [Combine.php](./src/Operation/Combine.php)
| `count` | int | [Collection.php](./src/Collection.php)
| `count` | int | [Count.php](./src/Operation/Count.php)
| `filter` | new Collection object | [Filter.php](./src/Operation/Filter.php)
| `first` | mixed | [Collection.php](./src/Collection.php)
| `first` | mixed | [First.php](./src/Operation/First.php)
| `flatten` | new Collection object | [Flatten.php](./src/Operation/Flatten.php)
| `flip` | new Collection object | [Flip.php](./src/Operation/Flip.php)
| `forget` | new Collection object | [Forget.php](./src/Operation/Forget.php)
| `get` | mixed | [Collection.php](./src/Collection.php)
| `get` | mixed | [Get.php](./src/Operation/Get.php)
| `getIterator` | Iterator | [Collection.php](./src/Collection.php)
| `keys` | new Collection object | [Keys.php](./src/Operation/Keys.php)
| `last` | mixed | [Last.php](./src/Operation/Last.php)
| `limit` | new Collection object | [Limit.php](./src/Operation/Limit.php)
| `map` | new Collection object | [Map.php](./src/Operation/Map.php)
| `merge` | new Collection object | [Merge.php](./src/Operation/Merge.php)
Expand All @@ -204,10 +205,11 @@ the methods always return the same values for the same inputs.
| `prepend` | new Collection object | [Prepend.php](./src/Operation/Prepend.php)
| `proxy` | new Collection object | [Proxy.php](./src/Operation/Proxy.php)
| `rebase` | new Collection object | [Rebase.php](./src/Operation/Rebase.php)
| `reduce` | mixed | [Collection.php](./src/Collection.php)
| `reduce` | mixed | [Reduce.php](./src/Operation/Reduce.php)
| `run` | mixed | [Run.php](./src/Operation/Run.php)
| `skip` | new Collection object | [Skip.php](./src/Operation/Skip.php)
| `slice` | new Collection object | [Slice.php](./src/Operation/Slice.php)
| `sort ` | new Collection object | [Sort.php](./src/Operation/Sort.php)
| `walk` | new Collection object | [Walk.php](./src/Operation/Walk.php)
| `zip` | new Collection object | [Zip.php](./src/Operation/Zip.php)

Expand Down

0 comments on commit 3fcbf00

Please sign in to comment.