Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.
  • Sponsor narrowspark/php-cs-fixer-config

  • Notifications You must be signed in to change notification settings
  • Fork 2

Commit b2dd11e

Browse files
authoredJul 19, 2017
Setting no_alias_functions to false (#14)
1 parent f7f88b1 commit b2dd11e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/Config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function getRules(): array
7777
'native_function_casing' => true,
7878
'native_function_invocation' => true,
7979
'new_with_braces' => true,
80-
'no_alias_functions' => true,
80+
'no_alias_functions' => false,
8181
'no_blank_lines_after_class_opening' => true,
8282
'no_blank_lines_after_phpdoc' => true,
8383
'no_blank_lines_before_namespace' => true,

‎tests/ConfigTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ private function getSymfonyRules(): array
277277
'native_function_casing' => true,
278278
'native_function_invocation' => true,
279279
'new_with_braces' => true,
280-
'no_alias_functions' => true,
280+
'no_alias_functions' => false,
281281
'no_blank_lines_after_class_opening' => true,
282282
'no_blank_lines_after_phpdoc' => true,
283283
'no_empty_comment' => true,

0 commit comments

Comments
 (0)