1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-05 20:48:45 +01:00
psalm/src/Psalm/Plugin.php

72 lines
2.0 KiB
PHP
Raw Normal View History

2016-06-18 20:45:55 +02:00
<?php
2016-07-26 00:37:44 +02:00
namespace Psalm;
2016-06-18 20:45:55 +02:00
use PhpParser;
use Psalm\Checker\FileChecker;
use Psalm\Checker\StatementsChecker;
use Psalm\FileManipulation\FileManipulation;
use Psalm\Storage\ClassLikeStorage;
2016-06-18 20:45:55 +02:00
abstract class Plugin
{
/**
* Called after an expression has been checked
2016-11-02 07:29:00 +01:00
*
* @param StatementsChecker $statements_checker
2016-06-18 20:45:55 +02:00
* @param PhpParser\Node\Expr $stmt
2016-06-20 07:29:30 +02:00
* @param Context $context
* @param CodeLocation $code_location
* @param string[] $suppressed_issues
* @param FileManipulation[] $file_replacements
2017-05-27 02:16:18 +02:00
*
2016-06-18 20:45:55 +02:00
* @return null|false
*/
public function afterExpressionCheck(
StatementsChecker $statements_checker,
PhpParser\Node\Expr $stmt,
Context $context,
CodeLocation $code_location,
array $suppressed_issues,
array &$file_replacements = []
) {
2016-11-02 07:29:00 +01:00
return null;
2016-06-18 20:45:55 +02:00
}
/**
* Called after a statement has been checked
2016-11-02 07:29:00 +01:00
*
* @param StatementsChecker $statements_checker
2016-12-12 19:50:46 +01:00
* @param PhpParser\Node\Stmt|PhpParser\Node\Expr $stmt
* @param Context $context
* @param CodeLocation $code_location
* @param string[] $suppressed_issues
* @param FileManipulation[] $file_replacements
2017-05-27 02:16:18 +02:00
*
2016-06-18 20:45:55 +02:00
* @return null|false
*/
public function afterStatementCheck(
StatementsChecker $statements_checker,
PhpParser\Node $stmt,
Context $context,
CodeLocation $code_location,
array $suppressed_issues,
array &$file_replacements = []
) {
2016-11-02 07:29:00 +01:00
return null;
2016-06-18 20:45:55 +02:00
}
/**
* @param FileManipulation[] $file_replacements
2017-05-27 02:16:18 +02:00
*
* @return void
*/
public function visitClassLike(
2017-05-05 06:06:46 +02:00
PhpParser\Node\Stmt\ClassLike $stmt,
ClassLikeStorage $storage,
FileChecker $file_checker,
Aliases $aliases,
array &$file_replacements = []
) {
}
2016-06-18 20:45:55 +02:00
}