MediaWiki master
Processor.php
Go to the documentation of this file.
1<?php
2
4
11interface Processor {
12
23 public function extractInfo( $path, array $info, $version );
24
33 public function getExtractedInfo();
34
46 public function getRequirements( array $info, $includeDev );
47
62 public function getExtractedAutoloadInfo( bool $includeDev = false ): array;
63}
64
66class_alias( Processor::class, 'Processor' );
Generic processor that reads associated arrays and registers whatever is required.
Definition Processor.php:11
extractInfo( $path, array $info, $version)
Main entry point, processes the information provided.
getExtractedAutoloadInfo(bool $includeDev=false)
Returns the extracted autoload info.
getRequirements(array $info, $includeDev)
Get the requirements for the provided info.