CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Reporting Security Issues
    • Privacy Policy
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Get Involved
    • Issues (Github)
    • Bakery
    • Featured Resources
    • Training
    • Meetups
    • My CakePHP
    • CakeFest
    • Newsletter
    • Linkedin
    • YouTube
    • Facebook
    • Twitter
    • Mastodon
    • Help & Support
    • Forum
    • Stack Overflow
    • IRC
    • Slack
    • Paid Support
CakePHP

C CakePHP 3.0 Red Velvet API

  • Project:
    • CakePHP
      • CakePHP
      • Authentication
      • Authorization
      • Chronos
      • Elastic Search
      • Queue
  • Version:
    • 3.0
      • 5.2
      • 5.1
      • 5.0
      • 4.6
      • 4.5
      • 4.4
      • 4.3
      • 4.2
      • 4.1
      • 4.0
      • 3.10
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Namespaces

  • Global
  • Cake
    • Auth
    • Cache
    • Collection
    • Console
    • Controller
    • Core
    • Database
    • Datasource
    • Error
    • Event
    • Filesystem
    • Form
    • I18n
    • Log
    • Network
    • ORM
    • Routing
    • Shell
    • TestSuite
      • Fixture
      • Stub
    • Utility
    • Validation
    • View

Class ConsoleOutput

StubOutput makes testing shell commands/shell helpers easier.

You can use this class by injecting it into a ConsoleIo instance that your command/task/helper uses:

use Cake\Console\ConsoleIo;
use Cake\TestSuite\Stub\ConsoleOutput;

$output = new ConsoleOutput();
$io = new ConsoleIo($output);
Namespace: Cake\TestSuite\Stub

Constants

  • int
    COLOR ¶
    2

    Color output - Convert known tags in to ANSI color escape codes.

  • string
    LF ¶
    PHP_EOL

    Constant for a newline.

  • int
    PLAIN ¶
    1

    Plain output - tags will be stripped.

  • int
    RAW ¶
    0

    Raw output constant - no modification of output text.

Property Summary

  • $_backgroundColors protected static
    array

    background colors used in colored output.

  • $_foregroundColors protected static
    array

    text colors used in colored output.

  • $_options protected static
    string

    formatting options for colored output

  • $_out protected
    array

    Buffered messages.

  • $_output protected
    resource

    File handle for output.

  • $_outputAs protected
    int

    The current output type. Manipulated with ConsoleOutput::outputAs();

  • $_styles protected static
    array

    Styles that are available as tags in console output. You can modify these styles with ConsoleOutput::styles()

Method Summary

  • __construct() public

    Construct the output object.

  • __destruct() public

    Clean up and close handles

  • _replaceTags() protected

    Replace tags with color codes.

  • _write() protected

    Writes a message to the output stream.

  • messages() public

    Get the buffered output.

  • outputAs() public

    Get/Set the output type to use. The output type how formatting tags are treated.

  • styleText() public

    Apply styling to text.

  • styles() public

    Get the current styles offered, or append new ones in.

  • write() public

    Write output to the buffer.

Method Detail

__construct() ¶ public

__construct(string $stream = 'php://stdout')

Construct the output object.

Checks for a pretty console environment. Ansicon and ConEmu allows pretty consoles on windows, and is supported.

Parameters
string $stream optional

The identifier of the stream to write output to.

__destruct() ¶ public

__destruct()

Clean up and close handles

_replaceTags() ¶ protected

_replaceTags(array $matches): string

Replace tags with color codes.

Parameters
array $matches

An array of matches to replace.

Returns
string

_write() ¶ protected

_write(string $message): bool

Writes a message to the output stream.

Parameters
string $message

Message to write.

Returns
bool

messages() ¶ public

messages(): array

Get the buffered output.

Returns
array

outputAs() ¶ public

outputAs(int|null $type = null): int|void

Get/Set the output type to use. The output type how formatting tags are treated.

Parameters
int|null $type optional

The output type to use. Should be one of the class constants.

Returns
int|void

styleText() ¶ public

styleText(string $text): string

Apply styling to text.

Parameters
string $text

Text with styling tags.

Returns
string

styles() ¶ public

styles(string|null $style = null, array|bool|null $definition = null): mixed

Get the current styles offered, or append new ones in.

Get a style definition

$output->styles('error');

Get all the style definitions

$output->styles();

Create or modify an existing style

$output->styles('annoy', ['text' => 'purple', 'background' => 'yellow', 'blink' => true]);

Remove a style

$this->output->styles('annoy', false);
Parameters
string|null $style optional

The style to get or create.

array|bool|null $definition optional

The array definition of the style to change or create a style or false to remove a style.

Returns
mixed

write() ¶ public

write(string|array $message, int $newlines = 1): void

Write output to the buffer.

Parameters
string|array $message

A string or an array of strings to output

int $newlines optional

Number of newlines to append

Returns
void

Property Detail

$_backgroundColors ¶ protected static

background colors used in colored output.

Type
array

$_foregroundColors ¶ protected static

text colors used in colored output.

Type
array

$_options ¶ protected static

formatting options for colored output

Type
string

$_out ¶ protected

Buffered messages.

Type
array

$_output ¶ protected

File handle for output.

Type
resource

$_outputAs ¶ protected

The current output type. Manipulated with ConsoleOutput::outputAs();

Type
int

$_styles ¶ protected static

Styles that are available as tags in console output. You can modify these styles with ConsoleOutput::styles()

Type
array
OpenHub
Pingping
Linode
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Reporting Security Issues
  • Privacy Policy
  • Logos & Trademarks
  • Community
  • Get Involved
  • Issues (Github)
  • Bakery
  • Featured Resources
  • Training
  • Meetups
  • My CakePHP
  • CakeFest
  • Newsletter
  • Linkedin
  • YouTube
  • Facebook
  • Twitter
  • Mastodon
  • Help & Support
  • Forum
  • Stack Overflow
  • IRC
  • Slack
  • Paid Support

Generated using CakePHP API Docs