n1ed-8.x-2.31/src/Flmngr/lib/CommonRequest.php
src/Flmngr/lib/CommonRequest.php
<?php
namespace Drupal\n1ed\Flmngr\lib;
use Drupal\n1ed\Flmngr\lib\IFmRequest;
class CommonRequest extends IFmRequest {
public function parseRequest() {
$this->requestMethod = $_SERVER['REQUEST_METHOD'];
$this->files = $_FILES;
$this->post = $_POST;
$this->get = $_GET;
}
}
