1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 18:36:58 +01:00
psalm/src/Psalm/Plugin.php

49 lines
1.3 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\StatementsChecker;
2016-06-18 20:45:55 +02:00
abstract class Plugin
{
/**
2016-11-02 07:29:00 +01:00
* Checks an expression
*
* @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 array $suppressed_issues
2016-06-18 20:45:55 +02:00
* @return null|false
*/
public function checkExpression(
StatementsChecker $statements_checker,
PhpParser\Node\Expr $stmt,
Context $context,
CodeLocation $code_location,
array $suppressed_issues
) {
2016-11-02 07:29:00 +01:00
return null;
2016-06-18 20:45:55 +02:00
}
/**
2016-11-02 07:29:00 +01:00
* Checks a statement
*
* @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 array $suppressed_issues
2016-06-18 20:45:55 +02:00
* @return null|false
*/
public function checkStatement(
StatementsChecker $statements_checker,
PhpParser\Node $stmt,
Context $context,
CodeLocation $code_location,
array $suppressed_issues
) {
2016-11-02 07:29:00 +01:00
return null;
2016-06-18 20:45:55 +02:00
}
}