Code style fix

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2018-10-22 02:17:12 +04:00
parent f3b5ab5616
commit 1352b5ee79
13 changed files with 250 additions and 206 deletions

View File

@ -22,9 +22,9 @@
* @package local_webhooks
*/
defined( "MOODLE_INTERNAL" ) || die();
defined('MOODLE_INTERNAL') || die();
require_once( $CFG->libdir . "/externallib.php" );
require_once $CFG->libdir . '/externallib.php';
/**
* External functions.
@ -34,4 +34,4 @@ require_once( $CFG->libdir . "/externallib.php" );
* @package local_webhooks
*/
class local_webhooks_external extends external_api {
}
}