Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 651 Bytes

no_alias_language_construct_call.rst

File metadata and controls

30 lines (21 loc) · 651 Bytes

Rule no_alias_language_construct_call

Master language constructs shall be used instead of aliases.

Examples

Example #1

--- Original
+++ New
 <?php
-die;
+exit;

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the no_alias_language_construct_call rule.
@Symfony
Using the @Symfony rule set will enable the no_alias_language_construct_call rule.