Skip to content

Commit

Permalink
cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Oct 21, 2023
1 parent 6613c92 commit ededb97
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
*/
final class ArrayOffsetFetch extends UnresolvedConstantComponent
{
public function __construct(public readonly UnresolvedConstantComponent $array, public readonly UnresolvedConstantComponent $offset)
{
public function __construct(
public readonly UnresolvedConstantComponent $array,
public readonly UnresolvedConstantComponent $offset,
) {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
*/
final class KeyValuePair extends UnresolvedConstantComponent
{
public function __construct(public readonly ?UnresolvedConstantComponent $key, public readonly UnresolvedConstantComponent $value)
{
public function __construct(
public readonly ?UnresolvedConstantComponent $key,
public readonly UnresolvedConstantComponent $value,
) {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ abstract class UnresolvedBinaryOp extends UnresolvedConstantComponent
{
use ImmutableNonCloneableTrait;

public function __construct(public readonly UnresolvedConstantComponent $left, public readonly UnresolvedConstantComponent $right)
{
public function __construct(
public readonly UnresolvedConstantComponent $left,
public readonly UnresolvedConstantComponent $right,
) {
}
}

0 comments on commit ededb97

Please sign in to comment.