Skip to content
This repository was archived by the owner on Jul 6, 2019. It is now read-only.
This repository was archived by the owner on Jul 6, 2019. It is now read-only.

Array::reject #100

@bantya

Description

@bantya

On your site under Array::reject there is a typo in the method usage example. The example uses Array::filter method insted of Array::reject
The example says:

Arrays::filter(array(1, 2, 3), function($value) {
    return $value % 2 != 0; // Returns array(2)
});

It should rather say:

Arrays::reject(array(1, 2, 3), function($value) {
    return $value % 2 != 0; // Returns array(2)
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions