-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
don't input '@' in /** in php file? #446
Comments
but in not php file, when i wrote this code, it's ok. <?php
class Test
{
/**
* [__construct description]
*
* @ // this is ok
*
* @return {[type]} [description]
*/
public function __construct()
{
}
} |
I'm having difficulty understanding you. Please show a actual and expected example to help me reproduce the issue, for example:
Press Actual
Expected
|
@gerardroche class Constant
{
/**
* [test description]
*
* @return [type] [description]
*/
public function test()
{
}
} this is ok class Constant
{
/**
* [test description]
*
* look this line !!!!!!!.
*
* when i input '@', but not input!
* when i input '#', this is ok!
* # ok
* @return [type] [description]
*/
public function test()
{
}
} please look at 'look this line !!!!!!!.' |
@gerardroche can you understand me ? the problem occurs in php file. my english is a bit poor, please understand! |
follow my example file.
hope me and tks. @spadgos
The text was updated successfully, but these errors were encountered: