PHP Classes

File: vendor/monolog/monolog/.php_cs

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/monolog/monolog/.php_cs   Download  
File: vendor/monolog/monolog/.php_cs
Role: Example script
Content type: text/plain
Description: Example script
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 786 bytes
 

Contents

Class file image Download
<?php

$finder
= Symfony\CS\Finder\DefaultFinder::create()
    ->
files()
    ->
name('*.php')
    ->
in(__DIR__.'/src')
    ->
in(__DIR__.'/tests')
;

return
Symfony\CS\Config\Config::create()
    ->
fixers(array(
       
'psr0', 'encoding', 'short_tag', 'braces', 'elseif', 'eof_ending', 'function_declaration', 'indentation', 'line_after_namespace', 'linefeed', 'lowercase_constants', 'lowercase_keywords', 'multiple_use', 'php_closing_tag', 'trailing_spaces', 'visibility', 'duplicate_semicolon', 'extra_empty_lines', 'include', 'namespace_no_leading_whitespace', 'object_operator', 'operators_spaces', 'phpdoc_params', 'return', 'single_array_no_trailing_comma', 'spaces_cast', 'standardize_not_equal', 'ternary_spaces', 'unused_use', 'whitespacy_lines',
    ))
    ->
finder($finder)
;