Skip to content

Commit

Permalink
Additional code style fixes (vimeo#8112).
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel GUITON committed Dec 21, 2022
1 parent 94adf78 commit 3364bd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Psalm/Internal/Type/Comparator/ObjectComparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static function isShallowlyContainedBy(
$inputAs,
$containerAs,
$allow_interface_equality,
$atomic_comparison_result
$atomic_comparison_result,
);
} elseif ($containerAs instanceof TMixed && $inputAs instanceof TMixed) {
return true;
Expand Down
6 changes: 3 additions & 3 deletions tests/Template/NestedTemplateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ interface K3 extends J {}
* @template V of B<T, U>
* @implements J<V>
*/
class K1 implements J {}'
class K1 implements J {}',
],
'4levelNestedTemplatesOfObjects' => [
'code' => '<?php
Expand Down Expand Up @@ -242,8 +242,8 @@ protected function getDbRepo(): DbEntityRepository
* @extends DbRepositoryWrapper<O, E, R>
*/
abstract class AnObjectDbRepositoryWrapper
extends DbRepositoryWrapper {}'
]
extends DbRepositoryWrapper {}',
],
];
}

Expand Down

0 comments on commit 3364bd9

Please sign in to comment.