🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
mnt
/
web613
/
c2
/
38
/
570372438
/
htdocs
/
STRATO-apps
/
wordpress_02
/
app
/
wp-content
/
plugins
/
elementor
/
vendor
/
elementor
/
wp-one-package
/
src
/
Connect
/
Classes
✏️
Editing: GrantTypes.php
<?php namespace ElementorOne\Connect\Classes; use ElementorOne\Common\BasicEnum; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Class GrantTypes */ class GrantTypes extends BasicEnum { /** * Client credentials * @var string */ const CLIENT_CREDENTIALS = 'client_credentials'; /** * Authorization code * @var string */ const AUTHORIZATION_CODE = 'authorization_code'; /** * Refresh token * @var string */ const REFRESH_TOKEN = 'refresh_token'; }
💾 Save Changes
❌ Cancel