ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ProcessInterface.php
Go to the documentation of this file.
1<?php
2
3/*
4 * This file is part of Component Installer.
5 *
6 * (c) Rob Loach (http://robloach.net)
7 *
8 * For the full copyright and license information, please view the LICENSE.md
9 * file that was distributed with this source code.
10 */
11
13
14use Composer\IO\IOInterface;
15use Composer\Composer;
16
18{
27 public function __construct(Composer $composer, IOInterface $io);
28
35 public function init();
36
43 public function process();
44}
An exception for terminatinating execution or to throw for unit testing.
process()
Called when running through the process.
init()
Initialize the process before its run.
__construct(Composer $composer, IOInterface $io)
Create a new Process.