Skip to content
This repository was archived by the owner on Dec 29, 2020. It is now read-only.

By reference is applied in correctly #20

@AJenbo

Description

@AJenbo
/**
 * @param array $array
 */
function test(&$array) {}

Becomes

/**
 * @param array $array
 */
function test(&array $array) {}

Should have been

/**
 * @param array $array
 */
function test(array &$array) {}

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