Disable PHPStorm new file branding

PhpCodeigniterPhpstorm

Php Problem Overview


When I create a new file using PhpStorm it creates it's own comment at the top, this would be fine however when using codeigniter comments using /* */ do not work, anyway to disable this? if not i'm going to have to get a new editor.

Here is what I mean

<?php
/**
 * Created by PhpStorm.
 * User: Josh
 * Date: 28/02/2015
 * Time: 22:53
*/

Php Solutions


Solution 1 - Php

Windows: Go to File -> Settings -> Editor -> File and Code Templates -> Includes (TAB) -> PHP File Header

Mac: Go to PhpStorm -> Preferences -> Editor -> File and Code Templates -> Includes (TAB) -> PHP File Header

And then you can edit it or remove it, or whatever you wanna do :)

Solution 2 - Php

settings > editor > file and code templates > includes(tab) > php file header

I recommend to erase content instead of deleting this element

Solution 3 - Php

Instead of erasing the content you can just comment it out by surrounding it with {#...#} because it uses Apache Velocity template language.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJohnBobView Question on Stackoverflow
Solution 1 - PhpJesperView Answer on Stackoverflow
Solution 2 - PhpKamil KarkusView Answer on Stackoverflow
Solution 3 - PhpQchoView Answer on Stackoverflow