Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

Rule simple_to_complex_string_variable

Converts explicit variables in double-quoted strings and heredoc syntax from simple to complex format (${ to {$).

Description

Doesn’t touch implicit variables. Works together nicely with explicit_string_variable.

Examples

Example #1

--- Original
+++ New
 <?php
 $name = 'World';
-echo "Hello ${name}!";
+echo "Hello {$name}!";

Example #2

--- Original
+++ New
 <?php
 $name = 'World';
 echo <<<TEST
-Hello ${name}!
+Hello {$name}!
 TEST;

Rule sets

The rule is part of the following rule sets:

@PHP82Migration

Using the @PHP82Migration rule set will enable the simple_to_complex_string_variable rule.

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the simple_to_complex_string_variable rule.

@Symfony

Using the @Symfony rule set will enable the simple_to_complex_string_variable rule.

The logo is © 2010-2022 Sensio Labs