mirror of
https://github.com/pestphp/pest.git
synced 2026-03-12 02:37:22 +01:00
Adjusts configuration
This commit is contained in:
@ -1,2 +1,4 @@
|
|||||||
1. Mutation Testing.
|
1. Mutation Testing.
|
||||||
2. `->after`.
|
2. `->after`.
|
||||||
|
3. `pest()->`
|
||||||
|
|
||||||
|
|||||||
@ -53,6 +53,14 @@ final class Configuration
|
|||||||
->extend(...$classAndTraits);
|
->extend(...$classAndTraits);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Depending on where is called, it will add the given groups globally or locally.
|
||||||
|
*/
|
||||||
|
public function group(string ...$groups): UsesCall
|
||||||
|
{
|
||||||
|
return (new UsesCall($this->filename, []))->group(...$groups);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Depending on where is called, it will extend the given classes and traits globally or locally.
|
* Depending on where is called, it will extend the given classes and traits globally or locally.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user