Page MenuHomeWickedGov Phorge

BeforeAnalyzePhaseCapability.php
No OneTemporary

Size
747 B
Referenced Files
None
Subscribers
None

BeforeAnalyzePhaseCapability.php

<?php
declare(strict_types=1);
namespace Phan\PluginV3;
use Phan\CodeBase;
/**
* BeforeAnalyzePhaseCapability is used when you want to perform checks before analyzing a project.
*
* beforeAnalyzePhase is invoked immediately before forking analysis workers and before starting the analysis phase.
*
* @see BeforeAnalyzeCapability to run plugins **before** analyzing methods.
* (use BeforeAnalyzePhaseCapability if you're not sure)
*/
interface BeforeAnalyzePhaseCapability
{
/**
* This method is called before analyzing a project and after analyzing methods.
*
* @param CodeBase $code_base
* The code base of the project.
*/
public function beforeAnalyzePhase(
CodeBase $code_base
): void;
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 21:30 (1 d, 9 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d2/97/a6106a6c1d4ac04c5a387d6eedd7
Default Alt Text
BeforeAnalyzePhaseCapability.php (747 B)

Event Timeline