You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
839 B
PHP
48 lines
839 B
PHP
<?php
|
|
/**
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved
|
|
*/
|
|
|
|
/**
|
|
* The base request of all log request.
|
|
*
|
|
* @author log service dev
|
|
*/
|
|
class Aliyun_Log_Models_Request {
|
|
|
|
/**
|
|
* @var string project name
|
|
*/
|
|
private $project;
|
|
|
|
/**
|
|
* Aliyun_Log_Models_Request constructor
|
|
*
|
|
* @param string $project
|
|
* project name
|
|
*/
|
|
public function __construct($project) {
|
|
$this->project = $project;
|
|
}
|
|
|
|
/**
|
|
* Get project name
|
|
*
|
|
* @return string project name
|
|
*/
|
|
public function getProject() {
|
|
return $this->project;
|
|
}
|
|
|
|
/**
|
|
* Set project name
|
|
*
|
|
* @param string $project
|
|
* project name
|
|
*/
|
|
public function setProject($project) {
|
|
$this->project = $project;
|
|
}
|
|
}
|