Skip to content

Commit

Permalink
Merge pull request #314 from wayofdev/docs/updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp authored Jun 18, 2024
2 parents cf87f83 + 18c6524 commit f83a79a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/refactoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-

- name: 📥 Install "${{ matrix.dependencies }}" dependencies
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
dependencies: ${{ matrix.dependencies }}
Expand Down
3 changes: 3 additions & 0 deletions src/RuleSets/DefaultSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public function rules(): array
'phpdoc_align' => [

Check warning on line 65 in src/RuleSets/DefaultSet.php

View workflow job for this annotation

GitHub Actions / mutation-testing (ubuntu-latest, 8.1, locked)

Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ 'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline', 'attribute_placement' => 'same_line', 'after_heredoc' => true], 'php_unit_method_casing' => ['case' => 'snake_case'], 'yoda_style' => ['equal' => false, 'identical' => false, 'less_and_greater' => false], - 'phpdoc_align' => ['align' => 'left'], + 'phpdoc_align' => [], 'phpdoc_to_comment' => ['allow_before_return_statement' => true], 'ordered_class_elements' => ['sort_algorithm' => 'none', 'order' => ['use_trait', 'constant_public', 'constant_protected', 'constant_private', 'property_public_static', 'property_public', 'property_protected_static', 'property_protected', 'property_private_static', 'property_private', 'construct', 'method_public_static', 'method_protected_static', 'method_private_static', 'method_public_abstract_static', 'method_protected_abstract_static', 'method_public_abstract', 'method_protected_abstract', 'phpunit', 'method_public', 'method_protected', 'method_private']], 'global_namespace_import' => ['import_classes' => true, 'import_functions' => true, 'import_constants' => true],
'align' => 'left',
],
'phpdoc_to_comment' => [
'allow_before_return_statement' => true,
],

'ordered_class_elements' => [
'sort_algorithm' => 'none',
Expand Down

0 comments on commit f83a79a

Please sign in to comment.