[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/phpbb/search/sphinx/ -> config_comment.php (source)

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * For full copyright and license information, please see
  10  * the docs/CREDITS.txt file.
  11  *
  12  */
  13  
  14  namespace phpbb\search\sphinx;
  15  
  16  /**
  17  * \phpbb\search\sphinx\config_comment
  18  * Represents a comment inside the sphinx configuration
  19  */
  20  class config_comment
  21  {
  22      private $exact_string;
  23  
  24      /**
  25      * Create a new comment
  26      *
  27      * @param    string    $exact_string    The content of the comment including newlines, leading whitespace, etc.
  28      *
  29      * @access    public
  30      */
  31  	function __construct($exact_string)
  32      {
  33          $this->exact_string = $exact_string;
  34      }
  35  
  36      /**
  37      * Simply returns the comment as it was created
  38      *
  39      * @return    string    The exact string that was specified in the constructor
  40      *
  41      * @access    public
  42      */
  43  	function to_string()
  44      {
  45          return $this->exact_string;
  46      }
  47  }


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1