PHP Classes

File: vendor/eftec/bladeone/.php_cs

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendor/eftec/bladeone/.php_cs   Download  
File: vendor/eftec/bladeone/.php_cs
Role: Example script
Content type: text/plain
Description: Example script
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 2 years ago
Size: 257 bytes
 

Contents

Class file image Download
<?php

$finder
= PhpCsFixer\Finder::create()
    ->
in(__DIR__ . '/lib');

return
PhpCsFixer\Config::create()
    ->
setRiskyAllowed(true)
    ->
setRules([
       
'@PSR2' => true,
       
'array_syntax' => ['syntax' => 'short'],
    ])
    ->
setFinder($finder);