Skip to content

Instantly share code, notes, and snippets.

View nwehrhan's full-sized avatar
🐶

Nicholas Wehrhan nwehrhan

🐶
View GitHub Profile
@nwehrhan
nwehrhan / .php_cs
Created January 16, 2021 00:16
php-cs-fixer config
<?php
return PhpCsFixer\Config::create()
->setRules(array(
'@PSR2' => true,
//From Matt Dev Standards
'@Symfony' => true,
'concat_space' => false,
'single_blank_line_before_namespace' => false,