PHP Classes

File: rector.php

Recommend this page to a friend!
  Packages of Reinder Reinders   PHP Binary Flags   rector.php   Download  
File: rector.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Binary Flags
Manage a group of boolean flags using integers
Author: By
Last change:
Date: 1 month ago
Size: 284 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

use
Rector\Config\RectorConfig;

return
RectorConfig::configure()
    ->
withPaths([
       
__DIR__ . '/src',
       
__DIR__ . '/tests',
    ])
   
// uncomment to reach your current PHP version
    // ->withPhpSets()
   
->withTypeCoverageLevel(0);