PHP Classes

File: .cs.php

Recommend this page to a friend!
  Classes of Marco Cesarato   PHP Dumper Var   .cs.php   Download  
File: .cs.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Dumper Var
Display a formatted version of variable values
Author: By
Last change:
Date: 4 years ago
Size: 324 bytes
 

Contents

Class file image Download
<?php

return PhpCsFixer\Config::create()
  ->
setUsingCache(false)
  ->
setRiskyAllowed(true)
  ->
setRules([
   
'@PSR1' => true,
   
'@PSR2' => true,
  ])
  ->
setFinder(PhpCsFixer\Finder::create()
    ->
in(__DIR__ . '/src')
    ->
in(__DIR__ . '/tests')
    ->
name('*.php')
    ->
ignoreDotFiles(true)
    ->
ignoreVCS(true));