Skip to content

Commit

Permalink
Adjusted phpdoc_align CS rule
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech committed Jul 7, 2020
1 parent 35f0932 commit d2b0ebb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ return PhpCsFixer\Config::create()
'order' => 'alpha',
],
'phpdoc_add_missing_param_annotation' => false,
'phpdoc_align' => true,
'phpdoc_align' => ['align' => 'left'],
'phpdoc_annotation_without_dot' => true,
'phpdoc_indent' => true,
'phpdoc_no_access' => true,
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/Aeon/Calendar/Gregorian/BusinessHours.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ final class BusinessHours
private NonBusinessDays $nonBusinessDays;

/**
* @param BusinessDays $regularBusinessDays - lowest priority when checking open hours, overwrites nothing
* @param BusinessDays $customBusinessDays - highest priority when checking open hours, overwrites business days and non business days
* @param NonBusinessDays $nonBusinessDays - medium priority when checking open hours, overwrites regular business days
* @param BusinessDays $regularBusinessDays - lowest priority when checking open hours, overwrites nothing
* @param BusinessDays $customBusinessDays - highest priority when checking open hours, overwrites business days and non business days
* @param NonBusinessDays $nonBusinessDays - medium priority when checking open hours, overwrites regular business days
*/
public function __construct(BusinessDays $regularBusinessDays, BusinessDays $customBusinessDays, NonBusinessDays $nonBusinessDays)
{
Expand Down

0 comments on commit d2b0ebb

Please # to comment.