1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
fn(int $x) => $x = ($y + 2);
-
HINT:You should use only:
1 assignment(s) (2 used)
to a variable:
$x
to avoid accidentally overwriting it and make your code easier to read.
HINT:You should use only:
1 assignment(s) (2 used)
to a variable:
$x
to avoid accidentally overwriting it and make your code easier to read.
fn(int $x) => fn($z) => $z = ($y + 2);
-
HINT:You should use only:
1 assignment(s) (2 used)
to a variable:
$z
to avoid accidentally overwriting it and make your code easier to read.
HINT:You should use only:
1 assignment(s) (2 used)
to a variable:
$z
to avoid accidentally overwriting it and make your code easier to read.
fn(int $x) => fn($z) => $x = ($y + 2);
-
HINT:You should use only:
1 assignment(s) (2 used)
to a variable:
$x
to avoid accidentally overwriting it and make your code easier to read.
HINT:You should use only:
1 assignment(s) (2 used)
to a variable:
$x
to avoid accidentally overwriting it and make your code easier to read.
|