46 lines
969 B
PHP
46 lines
969 B
PHP
<?php
|
|
|
|
namespace League\CLImate\TerminalObject\Basic;
|
|
|
|
use League\CLImate\Decorator\Parser\ParserImporter;
|
|
use League\CLImate\Settings\SettingsImporter;
|
|
use League\CLImate\Util\UtilImporter;
|
|
|
|
abstract class BasicTerminalObject implements BasicTerminalObjectInterface
|
|
{
|
|
use SettingsImporter, ParserImporter, UtilImporter;
|
|
|
|
/**
|
|
* Set the property if there is a valid value
|
|
*
|
|
* @param string $key
|
|
* @param string $value
|
|
*/
|
|
protected function set($key, $value)
|
|
{
|
|
if (strlen($value)) {
|
|
$this->$key = $value;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the parser for the current object
|
|
*
|
|
* @return \League\CLImate\Decorator\Parser\Parser
|
|
*/
|
|
public function getParser()
|
|
{
|
|
return $this->parser;
|
|
}
|
|
|
|
/**
|
|
* Check if this object requires a new line to be added after the output
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function sameLine()
|
|
{
|
|
return false;
|
|
}
|
|
}
|