Open andrewnicols opened 7 months ago
Incorrect:
/** @var string $example An example string */ protected $example;
Correct:
/** @var string An example string */ protected $example;
The name of the var is inferred from the var itself. No need to specify it.
Incorrect:
Correct:
The name of the var is inferred from the var itself. No need to specify it.