From cd037f94ce87f383c9d53ed6efaf5cc5d0ad4af7 Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Tue, 16 Dec 2025 00:23:33 +0100 Subject: [PATCH] docs: update shell highlight syntax --- index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.rst b/index.rst index f866a3ea7..b3d66b4c1 100644 --- a/index.rst +++ b/index.rst @@ -29,7 +29,7 @@ Installation The recommended way to install PHP CS Fixer is to use `Composer `__: -.. code:: sh +.. code:: console $ composer require --dev friendsofphp/php-cs-fixer $ ## or when facing conflicts in dependencies: @@ -44,13 +44,13 @@ Usage Assuming you installed PHP CS Fixer as instructed above, you can initialise base config for your project by using following command: -.. code:: sh +.. code:: console $ ./vendor/bin/php-cs-fixer init To automatically fix your project, or only check against the need of changes, run: -.. code:: sh +.. code:: console $ ./vendor/bin/php-cs-fixer fix $ ./vendor/bin/php-cs-fixer check