Skip to content

Commit d628e60

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 4bf62a2 + 8d9cc26 commit d628e60

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ create a `.php_cs` file in your project root and configure the paths for the Fin
2020
<?php
2121

2222
require __DIR__.'/vendor/autoload.php';
23-
$modixSet = new \Modix\RuleSet\Sets\ModixSet();
23+
$modixSet = new \Modix\PhpCsRulesets\RuleSet\Sets\ModixSet();
2424

2525
$finder = PhpCsFixer\Finder::create()
2626
->in(__DIR__.'/src')

src/RuleSet/Sets/ModixSet.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,16 @@ public function getRules()
9999
'ordered_imports' => true,
100100
'php_unit_fqcn_annotation' => true,
101101
'php_unit_method_casing' => true,
102-
'phpdoc_align' => 'left',
102+
'phpdoc_align' => [
103+
'align' => 'left',
104+
],
103105
'phpdoc_annotation_without_dot' => true,
104106
'phpdoc_indent' => true,
105107
'phpdoc_inline_tag_normalizer' => true,
106108
'phpdoc_no_access' => true,
107109
'phpdoc_no_alias_tag' => true,
108110
'phpdoc_no_useless_inheritdoc' => true,
111+
'phpdoc_no_package' => true,
109112
'phpdoc_return_self_reference' => true,
110113
'phpdoc_scalar' => true,
111114
'phpdoc_separation' => true,

0 commit comments

Comments
 (0)