PHP Classes

File: vendor/mockery/mockery/.php_cs

Recommend this page to a friend!
  Classes of Renato De Oliveira Lucena   PHP Pokemon Script   vendor/mockery/mockery/.php_cs   Download  
File: vendor/mockery/mockery/.php_cs
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 335 bytes
 

Contents

Class file image Download
<?php

$finder
= Symfony\CS\Finder\DefaultFinder::create()
    ->
exclude('examples')
    ->
exclude('docs')
    ->
exclude('travis')
    ->
exclude('vendor')
    ->
exclude('tests/Mockery/_files')
    ->
exclude('tests/Mockery/_files')
    ->
in(__DIR__);

return
Symfony\CS\Config\Config::create()
    ->
level('psr2')
    ->
finder($finder);