spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to automatically generate namespace

dzgrief opened this issue · comments

default:

<?php

namespace App;

use App\B;

class A
{
    /**
     * [test description]
     * @param  B $b
     * @return [type]
     */
    public function test(B $b)
    {
    }
}

notes can be automatically generated namespaces?

<?php

namespace App;

use App\B;

class A
{
    /**
     * [test description]
     * @param  \App\B $b
     * @return [type]
     */
    public function test(B $b)
    {
    }
}