MediaWiki REL1_35
Processor.php
Go to the documentation of this file.
1<?php
2
9interface Processor {
10
21 public function extractInfo( $path, array $info, $version );
22
32 public function getExtractedInfo();
33
43 public function getRequirements( array $info, $includeDev );
44
53 public function getExtraAutoloaderPaths( $dir, array $info );
54}
Processors read associated arrays and register whatever is required.
Definition Processor.php:9
extractInfo( $path, array $info, $version)
Main entry point, processes the information provided.
getExtractedInfo()
getExtraAutoloaderPaths( $dir, array $info)
Get the path for additional autoloaders, e.g.
getRequirements(array $info, $includeDev)
Get the requirements for the provided info.