source: vendor/google/apiclient-services/src/FirebaseRules/TestResult.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 2.9 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\FirebaseRules;
19
20class TestResult extends \Google\Collection
21{
22 protected $collection_key = 'visitedExpressions';
23 /**
24 * @var string[]
25 */
26 public $debugMessages;
27 protected $errorPositionType = SourcePosition::class;
28 protected $errorPositionDataType = '';
29 protected $expressionReportsType = ExpressionReport::class;
30 protected $expressionReportsDataType = 'array';
31 protected $functionCallsType = FunctionCall::class;
32 protected $functionCallsDataType = 'array';
33 /**
34 * @var string
35 */
36 public $state;
37 protected $visitedExpressionsType = VisitedExpression::class;
38 protected $visitedExpressionsDataType = 'array';
39
40 /**
41 * @param string[]
42 */
43 public function setDebugMessages($debugMessages)
44 {
45 $this->debugMessages = $debugMessages;
46 }
47 /**
48 * @return string[]
49 */
50 public function getDebugMessages()
51 {
52 return $this->debugMessages;
53 }
54 /**
55 * @param SourcePosition
56 */
57 public function setErrorPosition(SourcePosition $errorPosition)
58 {
59 $this->errorPosition = $errorPosition;
60 }
61 /**
62 * @return SourcePosition
63 */
64 public function getErrorPosition()
65 {
66 return $this->errorPosition;
67 }
68 /**
69 * @param ExpressionReport[]
70 */
71 public function setExpressionReports($expressionReports)
72 {
73 $this->expressionReports = $expressionReports;
74 }
75 /**
76 * @return ExpressionReport[]
77 */
78 public function getExpressionReports()
79 {
80 return $this->expressionReports;
81 }
82 /**
83 * @param FunctionCall[]
84 */
85 public function setFunctionCalls($functionCalls)
86 {
87 $this->functionCalls = $functionCalls;
88 }
89 /**
90 * @return FunctionCall[]
91 */
92 public function getFunctionCalls()
93 {
94 return $this->functionCalls;
95 }
96 /**
97 * @param string
98 */
99 public function setState($state)
100 {
101 $this->state = $state;
102 }
103 /**
104 * @return string
105 */
106 public function getState()
107 {
108 return $this->state;
109 }
110 /**
111 * @param VisitedExpression[]
112 */
113 public function setVisitedExpressions($visitedExpressions)
114 {
115 $this->visitedExpressions = $visitedExpressions;
116 }
117 /**
118 * @return VisitedExpression[]
119 */
120 public function getVisitedExpressions()
121 {
122 return $this->visitedExpressions;
123 }
124}
125
126// Adding a class alias for backwards compatibility with the previous class name.
127class_alias(TestResult::class, 'Google_Service_FirebaseRules_TestResult');
Note: See TracBrowser for help on using the repository browser.