Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
setup
src
Magento
Setup
Test
Unit
Console
Style
TestOutput.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Setup\Test\Unit\Console\Style
;
8
9
use Symfony\Component\Console\Output\Output;
10
14
class
TestOutput
extends
Output
15
{
16
public
$output
=
''
;
17
18
public
function
clear
()
19
{
20
$this->
output
=
''
;
21
}
22
27
protected
function
doWrite
(
$message
, $newline)
28
{
29
$this->
output
.=
$message
. ($newline ?
"\n"
:
''
);
30
}
31
}
Magento\Setup\Test\Unit\Console\Style
Definition:
MagentoStyleTest.php:7
output
output($string, $level=INFO, $label='')
Definition:
pre_composer_update_2.3.php:389
Magento\Setup\Test\Unit\Console\Style\TestOutput
Definition:
TestOutput.php:14
$message
$message
Definition:
notifications.php:7
Magento\Setup\Test\Unit\Console\Style\TestOutput\clear
clear()
Definition:
TestOutput.php:18
Magento\Setup\Test\Unit\Console\Style\TestOutput\$output
$output
Definition:
TestOutput.php:16
Magento\Setup\Test\Unit\Console\Style\TestOutput\doWrite
doWrite($message, $newline)
Definition:
TestOutput.php:27