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

Add linter that detects sequential independent awaits #8

Open
@fredemmott

Description

@fredemmott

e.g:

$a = await foo();
$b = await bar();

should suggest autofix:

list($a, $b) = await \HH\Asio\va(foo(), bar());

... but this is fine:

$a = await foo();
$b = await bar($a->getFoo());

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions