[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/Application/CLI/Output/ -> Xml.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2014 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  namespace Joomla\CMS\Application\CLI\Output;
  11  
  12  use Joomla\CMS\Application\CLI\CliOutput;
  13  
  14  // phpcs:disable PSR1.Files.SideEffects
  15  \defined('JPATH_PLATFORM') or die;
  16  // phpcs:enable PSR1.Files.SideEffects
  17  
  18  /**
  19   * Output handler for writing command line output to the stdout interface
  20   *
  21   * @since       4.0.0
  22   * @deprecated  5.0  Use the `joomla/console` package instead
  23   */
  24  class Xml extends CliOutput
  25  {
  26      /**
  27       * Write a string to standard output.
  28       *
  29       * @param   string   $text  The text to display.
  30       * @param   boolean  $nl    True (default) to append a new line at the end of the output string.
  31       *
  32       * @return  $this
  33       *
  34       * @since   4.0.0
  35       * @throws  \RuntimeException
  36       * @codeCoverageIgnore
  37       */
  38      public function out($text = '', $nl = true)
  39      {
  40          fwrite(STDOUT, $text . ($nl ? "\n" : null));
  41  
  42          return $this;
  43      }
  44  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer