Skip to content

Commit

Permalink
MDL-76583 core_external: external settings coding style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Jan 18, 2023
1 parent c978cd8 commit 8bc2011
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions lib/external/classes/external_settings.php
Expand Up @@ -17,27 +17,26 @@
namespace core_external;

/**
* Singleton to handle the external settings.
* Singleton to handle the external settings..
*
* We use singleton to encapsulate the "logic"
* We use singleton to encapsulate the "logic".
*
* @package core_webservice
* @package core_external
* @copyright 2012 Jerome Mouneyrac
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.3
*/
class external_settings {

/** @var object the singleton instance */
/** @var settings|null the singleton instance */
public static $instance = null;

/** @var boolean Should the external function return raw text or formatted */
/** @var bool Should the external function return raw text or formatted */
private $raw = false;

/** @var boolean Should the external function filter the text */
/** @var bool Should the external function filter the text */
private $filter = false;

/** @var boolean Should the external function rewrite plugin file url */
/** @var bool Should the external function rewrite plugin file url */
private $fileurl = true;

/** @var string In which file should the urls be rewritten */
Expand Down

0 comments on commit 8bc2011

Please sign in to comment.