applicationReadable = $applicationReadable; } /** * @return bool */ public function getApplicationReadable() { return $this->applicationReadable; } /** * @param string */ public function setExpiration($expiration) { $this->expiration = $expiration; } /** * @return string */ public function getExpiration() { return $this->expiration; } /** * @param string[] */ public function setHttpHeaders($httpHeaders) { $this->httpHeaders = $httpHeaders; } /** * @return string[] */ public function getHttpHeaders() { return $this->httpHeaders; } /** * @param string */ public function setMimeType($mimeType) { $this->mimeType = $mimeType; } /** * @return string */ public function getMimeType() { return $this->mimeType; } /** * @param string */ public function setPath($path) { $this->path = $path; } /** * @return string */ public function getPath() { return $this->path; } /** * @param bool */ public function setRequireMatchingFile($requireMatchingFile) { $this->requireMatchingFile = $requireMatchingFile; } /** * @return bool */ public function getRequireMatchingFile() { return $this->requireMatchingFile; } /** * @param string */ public function setUploadPathRegex($uploadPathRegex) { $this->uploadPathRegex = $uploadPathRegex; } /** * @return string */ public function getUploadPathRegex() { return $this->uploadPathRegex; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(StaticFilesHandler::class, 'Google_Service_Appengine_StaticFilesHandler');