This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$finder = PhpCsFixer\Finder::create() | |
->exclude('bootstrap/cache') | |
->exclude('node_modules') | |
->exclude('storage') | |
->in(__DIR__) | |
->notName('*.blade.php') | |
->notName('.phpstorm.meta.php') | |
->notName('_ide_*.php'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
const START = 'Ë'; | |
const END = 'û'; | |
const MOD = 103; | |
const OFFSET = 32; | |
const SPECIAL_OFFSET = 68; | |
const PACKAGE = '06'; | |
function calcChecksum($value) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"[php]":{ | |
"editor.rulers": [ | |
{ | |
"column": 80, // spacing of 1st column from left | |
"color": "#555" // orange, Go Vols! | |
}, | |
], | |
} |
OlderNewer