Skip to content

Instantly share code, notes, and snippets.

View ppabcd's full-sized avatar
🏠
Working from home

Reza Juliandri ppabcd

🏠
Working from home
View GitHub Profile
@ppabcd
ppabcd / .php-cs-fixer.php
Created September 23, 2023 10:29 — forked from laravel-shift/.php-cs-fixer.php
PHP CS Fixer - Laravel Coding Style Ruleset
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_indentation' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',