Skip to content

Commit

Permalink
(refactor): run format
Browse files Browse the repository at this point in the history
  • Loading branch information
FreakyWizard committed Nov 15, 2024
1 parent 6eae482 commit cad3953
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/Interfaces/ConfigInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@

interface ConfigInterface extends \PhpCsFixer\ConfigInterface
{
/**
* Creates default PHP CS fixer config. Sets rules, line ending and risky allowed
*/
/**
* Creates default PHP CS fixer config. Sets rules, line ending and risky allowed
*/
public static function create(Finder $finder, string $name = 'default'): self;

/**
* Recursively merges provided rules with current rules.
* Allows default rules to be overridden.
*
* @param array<string, array<string, mixed>|bool> $rules
*/
public function mergeRules(array $rules): self;
/**
* Recursively merges provided rules with current rules.
* Allows default rules to be overridden.
*
* @param array<string, array<string, mixed>|bool> $rules
*/
public function mergeRules(array $rules): self;

/**
* Unset matching rules
*
* @param array<int, string> $rulesKeys
*/
/**
* Unset matching rules
*
* @param array<int, string> $rulesKeys
*/
public function removeRules(array $rulesKeys): self;

/**
* Removes rule name
*/
public function removeRule(string $ruleKey): self;
/**
* Removes rule name
*/
public function removeRule(string $ruleKey): self;
}

0 comments on commit cad3953

Please sign in to comment.