PHP Classes

File: .php_cs

Recommend this page to a friend!
  Classes of Jakub Dubec   PHP GPX Library   .php_cs   Download  
File: .php_cs
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP GPX Library
Parser and generator of GPS Exchange files
Author: By
Last change:
Date: 6 years ago
Size: 343 bytes
 

Contents

Class file image Download

<?php

$finder
= PhpCsFixer\Finder::create()
    ->
in(__DIR__)
    ->
ignoreDotFiles(true)
    ->
ignoreVCS(true)
    ->
exclude(['docs', 'vendor'])
    ->
files()
    ->
name('*.php')
;

return
PhpCsFixer\Config::create()
    ->
setUsingCache(true)
    ->
setFinder($finder)
    ->
setRules([
       
'@PSR2' => true,
    ])
    ->
setIndent("\t")
;