ntzm/php-comment-style

An application for fixing PHP comment style

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ntzm/php-comment-style

0.1.2 2017-11-25 23:35 UTC

This package is auto-updated.

Last update: 2025-09-27 13:09:14 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