Comment associative array in PHP Documentor

前端 未结 3 1644
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-01 14:08

I use several associative arrays in my PHP application and I\'m using PHP documentor to comment my sources. I never really did specify comments for the arrays in an array, b

3条回答
  •  眼角桃花
    2020-12-01 14:52

    For me this works fine in PhpStorm for nice return value description:

    /**
     * @param string $requestUri
     * @return array[
     *  'controller' => string,
     *  'action' => string
     * ]
     */
    

提交回复
热议问题