Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

Rule no_mixed_echo_print

Either language construct print or echo should be used.

Configuration

use

The desired language construct.

Allowed values: 'echo', 'print'

Default value: 'echo'

Examples

Example #1

Default configuration.

--- Original
+++ New
-<?php print 'example';
+<?php echo 'example';

Example #2

With configuration: ['use' => 'print'].

--- Original
+++ New
-<?php echo('example');
+<?php print('example');

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the no_mixed_echo_print rule with the default config.

@Symfony

Using the @Symfony rule set will enable the no_mixed_echo_print rule with the default config.

The logo is © 2010-2022 Sensio Labs