MediaWiki master
Processor.php
Go to the documentation of this file.
1<?php
2
9interface Processor {
10
21 public function extractInfo( $path, array $info, $version );
22
31 public function getExtractedInfo();
32
42 public function getRequirements( array $info, $includeDev );
43
58 public function getExtractedAutoloadInfo( bool $includeDev = false ): array;
59}
Generic processor that reads associated arrays and registers whatever is required.
Definition Processor.php:9
extractInfo( $path, array $info, $version)
Main entry point, processes the information provided.
getExtractedInfo()
getExtractedAutoloadInfo(bool $includeDev=false)
Returns the extracted autoload info.
getRequirements(array $info, $includeDev)
Get the requirements for the provided info.