Skip to content

Instantly share code, notes, and snippets.

View akbortoli's full-sized avatar

Alysson Bortoli akbortoli

  • Auckland, New Zealand
View GitHub Profile
@akbortoli
akbortoli / .php_cs.laravel.php
Created July 2, 2020 21:05 — forked from laravel-shift/.php-cs-fixer.php
PHP CS Fixer - Laravel Coding Style Ruleset
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',
'operators' => ['=>' => null]