PHP Classes

File: .php_cs

Recommend this page to a friend!
  Classes of WsdlToPhp   WsSecurity   .php_cs   Download  
File: .php_cs
Role: Example script
Content type: text/plain
Description: Example script
Class: WsSecurity
Create header to set password for SOAP requests
Author: By
Last change:
Date: 6 years ago
Size: 242 bytes
 

Contents

Class file image Download
<?php

$finder
= Symfony\CS\Finder\DefaultFinder::create()
    ->
exclude('vendor')
    ->
exclude('tests')
    ->
in(__DIR__);

return
Symfony\CS\Config\Config::create()
    ->
level(Symfony\CS\FixerInterface::PSR2_LEVEL)
    ->
finder($finder);