PHP Classes

File: rector.php

Recommend this page to a friend!
  Classes of tomloprod   Memoize   rector.php   Download  
File: rector.php
Role: Example script
Content typex: text/plain
Description: Example script
Class: Memoize
Store and retrieve cache values in arrays
Author: By
Last change: Update of rector.php
Date: 1 month ago
Size: 413 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

use
Rector\Config\RectorConfig;

return
RectorConfig::configure()
    ->
withPaths([
       
__DIR__.'/src',
       
__DIR__.'/tests',
    ])
    ->
withSkip([])
    ->
withPreparedSets(
       
deadCode: true,
       
codeQuality: true,
       
typeDeclarations: true,
       
privatization: true,
       
earlyReturn: true,
       
strictBooleans: true,
    )
    ->
withPhpSets();