Skip to content

Instantly share code, notes, and snippets.

View Kkmikaze's full-sized avatar
💤
Sleeping

Thugi Nirbi Alam Kkmikaze

💤
Sleeping
  • Bandung, Indonesia
  • 02:55 (UTC +07:00)
  • LinkedIn in/kkmikaze
View GitHub Profile
@Kkmikaze
Kkmikaze / .php_cs
Created July 26, 2022 04:37
Configuration PHP CS Fixer Laravel
<?php
return PhpCsFixer\Config::create()
->setRules(array(
'@PSR2' => true,
'array_indentation' => true,
'array_syntax' => array('syntax' => 'short'),
'combine_consecutive_unsets' => true,
'method_separation' => true,
'no_multiline_whitespace_before_semicolons' => true,
'single_quote' => true,