PHP Classes

File: vendor/swiftmailer/swiftmailer/.php_cs.dist

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/swiftmailer/swiftmailer/.php_cs.dist   Download  
File: vendor/swiftmailer/swiftmailer/.php_cs.dist
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 5 years ago
Size: 484 bytes
 

Contents

Class file image Download
<?php

return PhpCsFixer\Config::create()
    ->
setRules(array(
       
'@Symfony' => true,
       
'@Symfony:risky' => true,
       
'array_syntax' => array('syntax' => 'long'),
       
'no_unreachable_default_argument_value' => false,
       
'braces' => array('allow_single_line_closure' => true),
       
'heredoc_to_nowdoc' => false,
       
'phpdoc_annotation_without_dot' => false,
    ))
    ->
setRiskyAllowed(true)
    ->
setFinder(PhpCsFixer\Finder::create()->in(__DIR__))
;