mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Exclude the Stringable
as a file since it is an interface, not a class
This commit is contained in:
parent
e70ee71885
commit
65a9fdcc70
1 changed files with 6 additions and 6 deletions
|
@ -32,20 +32,20 @@ return array(
|
|||
'prefix' => 'WooCommerce\\PayPalCommerce\\Vendor',
|
||||
'finders' => $finders,
|
||||
'patchers' => array(),
|
||||
'exclude-files' => array(), // list<string>.
|
||||
'exclude-files' => array( 'vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php' ), // list<string>.
|
||||
'exclude-namespaces' => array(
|
||||
'/^(?!Psr).*/', // Exclude all namespaces except those starting with "Psr".
|
||||
), // list<string|regex>.
|
||||
'exclude-constants' => array(), // list<string|regex>.
|
||||
'exclude-classes' => array( 'Stringable' ), // list<string|regex>.
|
||||
'exclude-classes' => array(), // list<string|regex>.
|
||||
'exclude-functions' => array(), // list<string|regex>.
|
||||
|
||||
'expose-global-constants' => false, // bool.
|
||||
'expose-global-classes' => false, // bool.
|
||||
'expose-global-classes' => false, // bool.
|
||||
'expose-global-functions' => false, // bool.
|
||||
|
||||
'expose-namespaces' => array(), // list<string|regex>.
|
||||
'expose-constants' => array(), // list<string|regex>.
|
||||
'expose-classes' => array(), // list<string|regex>.
|
||||
'expose-functions' => array(), // list<string|regex>.
|
||||
'expose-constants' => array(), // list<string|regex>.
|
||||
'expose-classes' => array(), // list<string|regex>.
|
||||
'expose-functions' => array(), // list<string|regex>.
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue