CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Team
    • Issues (Github)
    • YouTube Channel
    • Get Involved
    • Bakery
    • Featured Resources
    • Newsletter
    • Certification
    • My CakePHP
    • CakeFest
    • Facebook
    • Twitter
    • Help & Support
    • Forum
    • Stack Overflow
    • IRC
    • Slack
    • Paid Support
CakePHP

C CakePHP 3.8 Red Velvet API

  • Overview
  • Tree
  • Deprecated
  • Version:
    • 3.8
      • 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

  • Cake
    • Auth
      • Storage
    • Cache
      • Engine
    • Collection
      • Iterator
    • Command
    • Console
      • Exception
    • Controller
      • Component
      • Exception
    • Core
      • Configure
        • Engine
      • Exception
      • Retry
    • Database
      • Driver
      • Exception
      • Expression
      • Schema
      • Statement
      • Type
    • Datasource
      • Exception
    • Error
      • Middleware
    • Event
      • Decorator
    • Filesystem
    • Form
    • Http
      • Client
        • Adapter
        • Auth
      • Cookie
      • Exception
      • Middleware
      • Session
    • I18n
      • Formatter
      • Middleware
      • Parser
    • Log
      • Engine
    • Mailer
      • Exception
      • Transport
    • Network
      • Exception
    • ORM
      • Association
      • Behavior
        • Translate
      • Exception
      • Locator
      • Rule
    • Routing
      • Exception
      • Filter
      • Middleware
      • Route
    • Shell
      • Helper
      • Task
    • TestSuite
      • Fixture
      • Stub
    • Utility
      • Exception
    • Validation
    • View
      • Exception
      • Form
      • Helper
      • Widget
  • None

Classes

  • ConsoleInput
  • ConsoleOutput
  • Response

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);
Cake\Console\ConsoleOutput
Extended by Cake\TestSuite\Stub\ConsoleOutput
Namespace: Cake\TestSuite\Stub
Location: TestSuite/Stub/ConsoleOutput.php

Inherited Constants

  • COLOR, LF, PLAIN, RAW

Properties summary

  • $_out protected
    array
    Buffered messages.

Inherited Properties

  • _backgroundColors, _foregroundColors, _options, _output, _outputAs, _styles

Method Summary

  • messages() public
    Get the buffered output.
  • write() public
    Write output to the buffer.

Method Detail

messages() public ¶

messages( )

Get the buffered output.

Returns
array

write() public ¶

write( string|string[] $message , integer $newlines = 1 )

Write output to the buffer.

Parameters
string|string[] $message
A string or an array of strings to output
integer $newlines optional 1
Number of newlines to append
Overrides
Cake\Console\ConsoleOutput::write()

Methods inherited from Cake\Console\ConsoleOutput

__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 'php://stdout'
The identifier of the stream to write output to.

__destruct() public ¶

__destruct( )

Clean up and close handles

_replaceTags() protected ¶

_replaceTags( array $matches )

Replace tags with color codes.

Parameters
array $matches
An array of matches to replace.
Returns
string

_write() protected ¶

_write( string $message )

Writes a message to the output stream.

Parameters
string $message
Message to write.
Returns
integer|boolean
The number of bytes returned from writing to output.

getOutputAs() public ¶

getOutputAs( )

Get the output type on how formatting tags are treated.

Returns
integer

outputAs() public deprecated ¶

outputAs( integer|null $type = null )

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

Deprecated
3.5.0 Use getOutputAs()/setOutputAs() instead.
Parameters
integer|null $type optional null
The output type to use. Should be one of the class constants.
Returns
integer|null
Either null or the value if getting.

setOutputAs() public ¶

setOutputAs( integer $type )

Set the output type on how formatting tags are treated.

Parameters
integer $type
The output type to use. Should be one of the class constants.
Throws
InvalidArgumentException
in case of a not supported output type.

styleText() public ¶

styleText( string $text )

Apply styling to text.

Parameters
string $text
Text with styling tags.
Returns
string
String with color codes added.

styles() public ¶

styles( string|null $style = null , array|false|null $definition = null )

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 null
The style to get or create.
array|false|null $definition optional null

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

Returns
array|true|null

If you are getting styles, the style or null will be returned. If you are creating/modifying styles true will be returned.


Properties detail

$_out ¶

protected array

Buffered messages.

[]
Follow @CakePHP
#IRC
OpenHub
Rackspace
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Logos & Trademarks
  • Community
  • Team
  • Issues (Github)
  • YouTube Channel
  • Get Involved
  • Bakery
  • Featured Resources
  • Newsletter
  • Certification
  • My CakePHP
  • CakeFest
  • Facebook
  • Twitter
  • Help & Support
  • Forum
  • Stack Overflow
  • IRC
  • Slack
  • Paid Support

Generated using CakePHP API Docs