Add, replace or remove header comment.
Proper header content.
Allowed types: string
This option is required.
Comment syntax type.
Allowed values: 'comment'
, 'PHPDoc'
Default value: 'comment'
The location of the inserted header.
Allowed values: 'after_declare_strict'
, 'after_open'
Default value: 'after_declare_strict'
Whether the header should be separated from the file content with a new line.
Allowed values: 'both'
, 'bottom'
, 'none'
, 'top'
Default value: 'both'
With configuration: ['header' => 'Made with love.']
.
--- Original
+++ New
<?php
declare(strict_types=1);
+/*
+ * Made with love.
+ */
+
namespace A\B;
echo 1;
With configuration: ['header' => 'Made with love.', 'comment_type' => 'PHPDoc', 'location' => 'after_open', 'separate' => 'bottom']
.
--- Original
+++ New
<?php
+/**
+ * Made with love.
+ */
+
declare(strict_types=1);
namespace A\B;
echo 1;
With configuration: ['header' => 'Made with love.', 'comment_type' => 'comment', 'location' => 'after_declare_strict']
.
--- Original
+++ New
<?php
declare(strict_types=1);
+/*
+ * Made with love.
+ */
+
namespace A\B;
echo 1;
With configuration: ['header' => '']
.
--- Original
+++ New
<?php
declare(strict_types=1);
-/*
- * Comment is not wanted here.
- */
-
namespace A\B;
echo 1;