You are here

public function AbstractProcessTest::provideStartMethods in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/process/Tests/AbstractProcessTest.php \Symfony\Component\Process\Tests\AbstractProcessTest::provideStartMethods()
1 method overrides AbstractProcessTest::provideStartMethods()
SigchildDisabledProcessTest::provideStartMethods in vendor/symfony/process/Tests/SigchildDisabledProcessTest.php

File

vendor/symfony/process/Tests/AbstractProcessTest.php, line 1107

Class

AbstractProcessTest
@author Robert Schönthal <seroscho@googlemail.com>

Namespace

Symfony\Component\Process\Tests

Code

public function provideStartMethods() {
  return array(
    array(
      'start',
      'Symfony\\Component\\Process\\Exception\\LogicException',
      'Output has been disabled, enable it to allow the use of a callback.',
    ),
    array(
      'run',
      'Symfony\\Component\\Process\\Exception\\LogicException',
      'Output has been disabled, enable it to allow the use of a callback.',
    ),
    array(
      'mustRun',
      'Symfony\\Component\\Process\\Exception\\LogicException',
      'Output has been disabled, enable it to allow the use of a callback.',
    ),
  );
}