mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-76583 core_external: external settings coding style fixes
This commit is contained in:
parent
c978cd8cc3
commit
8bc2011d3d
15
lib/external/classes/external_settings.php
vendored
15
lib/external/classes/external_settings.php
vendored
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user