1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Fix linting issues

This commit is contained in:
Matthew Brown 2018-07-21 22:55:16 -04:00
parent 4fcef5c0d6
commit 4de33e509b
2 changed files with 3 additions and 2 deletions

View File

@ -234,7 +234,8 @@ class CommentChecker
* @return FunctionDocblockComment
* @psalm-suppress MixedArrayAccess
*/
public static function extractFunctionDocblockInfo($comment, $line_number) {
public static function extractFunctionDocblockInfo($comment, $line_number)
{
$comments = self::parseDocComment($comment, $line_number);
$info = new FunctionDocblockComment();

View File

@ -141,7 +141,7 @@ class DependencyFinderVisitor extends PhpParser\NodeVisitorAbstract implements P
new CodeLocation($this->file_scanner, $node, null, true)
)
)) {
// fall through
}
}
}