PHP Classes

File: .php_cs

Recommend this page to a friend!
  Classes of Scott Arciszewski   EasyDB   .php_cs   Download  
File: .php_cs
Role: Example script
Content type: text/plain
Description: Example script
Class: EasyDB
Simple Database Abstraction Layer around PDO
Author: By
Last change:
Date: 7 years ago
Size: 366 bytes
 

Contents

Class file image Download
#!/bin/env php
<?php

return Symfony\CS\Config::create()
    ->
level(Symfony\CS\FixerInterface::PSR2_LEVEL)
    ->
fixers([
       
'-psr0',
       
'concat_with_spaces',
       
'newline_after_open_tag',
       
'ordered_use',
       
'short_array_syntax',
    ])
    ->
finder(
       
Symfony\CS\Finder\DefaultFinder::create()
            ->
in(__DIR__)
    )
    ;