ntzm/php-comment-style

An application for fixing PHP comment style

0.1.2 2017-11-25 23:35 UTC

This package is auto-updated.

Last update: 2025-03-27 12:08:58 UTC


README

Formats PHP comments.

From:

//foo
/*bar baz*/

To:

// foo
/* bar baz */

Installation

composer require --dev ntzm/php-comment-style

Running

To fix all PHP files in src/:

vendor/bin/php-comment-style fix src

To fix all PHP files in src/ and tests/:

vendor/bin/php-comment-style fix src tests