[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/joomla/application/src/ -> ApplicationInterface.php (source)

   1  <?php
   2  /**
   3   * Part of the Joomla Framework Application Package
   4   *
   5   * @copyright  Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
   6   * @license    GNU General Public License version 2 or later; see LICENSE
   7   */
   8  
   9  namespace Joomla\Application;
  10  
  11  /**
  12   * Joomla Framework Application Interface
  13   *
  14   * @since  2.0.0
  15   */
  16  interface ApplicationInterface
  17  {
  18      /**
  19       * Method to close the application.
  20       *
  21       * @param   integer  $code  The exit code (optional; default is 0).
  22       *
  23       * @return  void
  24       *
  25       * @since   2.0.0
  26       */
  27  	public function close($code = 0);
  28  
  29      /**
  30       * Execute the application.
  31       *
  32       * @return  void
  33       *
  34       * @since   2.0.0
  35       */
  36  	public function execute();
  37  }


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