phpstorm php file header coment

Solutions on MaxInterview for phpstorm php file header coment by the best coders in the world

showing results for - "phpstorm php file header coment"
Yves
08 Jan 2020
1//File & Code Templates
2//https://confluence.jetbrains.com/display/PhpStorm/File+Templates+in+PhpStorm
3//The one with PHP File Header is located on "Includes" tab.
4//But you can edit default "PHP File" template and have your header comment defined right there if you wish.
5
6
7//WRITE
8
9
10
11/**
12 * Created by PhpStorm.
13 * Filename: ${FILE_NAME}
14 * Project Name: ${PROJECT_NAME}
15 * User: ${USER}
16 * Date: ${DAY}/${MONTH}/${YEAR}
17 * Time: ${TIME}
18 */
19
Francisco
26 Jan 2020
1/**
2 * Created by PhpStorm.
3 * Filename: ${FILE_NAME}
4 * Project Name: ${PROJECT_NAME}
5 * User: ${USER}
6 * Date: ${DAY}/${MONTH}/${YEAR}
7 * Time: ${TIME}
8 * Github: https://github.com/username
9 * Telegram: @username
10 * E-mail: username@email.com
11 */