Skip to content

Instantly share code, notes, and snippets.

@YuzuruSano
Created April 12, 2019 01:10
Show Gist options
  • Save YuzuruSano/f336f50e55ae6893bfe44b0cd93734ad to your computer and use it in GitHub Desktop.
Save YuzuruSano/f336f50e55ae6893bfe44b0cd93734ad to your computer and use it in GitHub Desktop.
.php_cs.dist
<?php
return PhpCsFixer\Config::create()
->setRules([
'array_syntax' => [
'syntax' => 'short',
],
'blank_line_before_return' => true,
'function_typehint_space' => true,
'method_separation' => true,
'no_unused_imports' => true,
'ordered_imports' => true,
'return_type_declaration' => true,
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment