Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
google_search_console
/
Struct
:
Challenge.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace LE_ACME2\Response\Authorization\Struct; defined('ABSPATH') or die(); class Challenge { const STATUS_PROGRESSING = 'processing'; const STATUS_PENDING = 'pending'; const STATUS_VALID = 'valid'; const STATUS_INVALID = 'invalid'; public $type; public $status; public $url; public $token; public function __construct(string $type, string $status, string $url, string $token) { $this->type = $type; $this->status = $status; $this->url = $url; $this->token = $token; } }