Reputation: 3657
Is it possible to phpstorm hint multidimentional arrays?
class myClass
{
private $config = array(
'var1' => array(
1 => array(
'name' => 'us'
)
)
);
public function Func() {
$this->config['var1']; //I have hinting
$this->config['var1'][]; //No hinting
}
}
Upvotes: 0
Views: 40
Reputation: 165501
Currently it's not possible.
https://youtrack.jetbrains.com/issue/WI-6845 -- star/vote/comment to get notified on progress.
Upvotes: 1