Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Facade.php

function Facade::printerFor

Throws

CannotOpenSocketException

DirectoryDoesNotExistException

InvalidSocketException

1 call to Facade::printerFor()
Application::registerLogfileWriters in vendor/phpunit/phpunit/src/TextUI/Application.php

File

vendor/phpunit/phpunit/src/TextUI/Output/Facade.php, line 112

Class

Facade
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit

Namespace

PHPUnit\TextUI\Output

Code

public static function printerFor(string $target) : Printer {
    if ($target === 'php://stdout') {
        if (!self::$printer instanceof NullPrinter) {
            return self::$printer;
        }
        return DefaultPrinter::standardOutput();
    }
    return DefaultPrinter::from($target);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal