77class BuildInfo
88{
99 /**
10- * @var string
10+ * @var string|null
1111 */
1212 protected $ id ;
1313 /**
14- * @var string
14+ * @var string|null
1515 */
1616 protected $ stream ;
1717 /**
18- * @var string
18+ * @var string|null
1919 */
2020 protected $ error ;
2121 /**
22- * @var ErrorDetail
22+ * @var ErrorDetail|null
2323 */
2424 protected $ errorDetail ;
2525 /**
26- * @var string
26+ * @var string|null
2727 */
2828 protected $ status ;
2929 /**
30- * @var string
30+ * @var string|null
3131 */
3232 protected $ progress ;
3333 /**
34- * @var ProgressDetail
34+ * @var ProgressDetail|null
3535 */
3636 protected $ progressDetail ;
3737 /**
3838 * Image ID or Digest.
3939 *
40- * @var ImageID
40+ * @var ImageID|null
4141 */
4242 protected $ aux ;
4343
44- public function getId (): string
44+ public function getId (): ? string
4545 {
4646 return $ this ->id ;
4747 }
4848
49- public function setId (string $ id ): self
49+ public function setId (? string $ id ): self
5050 {
5151 $ this ->id = $ id ;
5252
5353 return $ this ;
5454 }
5555
56- public function getStream (): string
56+ public function getStream (): ? string
5757 {
5858 return $ this ->stream ;
5959 }
6060
61- public function setStream (string $ stream ): self
61+ public function setStream (? string $ stream ): self
6262 {
6363 $ this ->stream = $ stream ;
6464
6565 return $ this ;
6666 }
6767
68- public function getError (): string
68+ public function getError (): ? string
6969 {
7070 return $ this ->error ;
7171 }
7272
73- public function setError (string $ error ): self
73+ public function setError (? string $ error ): self
7474 {
7575 $ this ->error = $ error ;
7676
7777 return $ this ;
7878 }
7979
80- public function getErrorDetail (): ErrorDetail
80+ public function getErrorDetail (): ? ErrorDetail
8181 {
8282 return $ this ->errorDetail ;
8383 }
8484
85- public function setErrorDetail (ErrorDetail $ errorDetail ): self
85+ public function setErrorDetail (? ErrorDetail $ errorDetail ): self
8686 {
8787 $ this ->errorDetail = $ errorDetail ;
8888
8989 return $ this ;
9090 }
9191
92- public function getStatus (): string
92+ public function getStatus (): ? string
9393 {
9494 return $ this ->status ;
9595 }
9696
97- public function setStatus (string $ status ): self
97+ public function setStatus (? string $ status ): self
9898 {
9999 $ this ->status = $ status ;
100100
101101 return $ this ;
102102 }
103103
104- public function getProgress (): string
104+ public function getProgress (): ? string
105105 {
106106 return $ this ->progress ;
107107 }
108108
109- public function setProgress (string $ progress ): self
109+ public function setProgress (? string $ progress ): self
110110 {
111111 $ this ->progress = $ progress ;
112112
113113 return $ this ;
114114 }
115115
116- public function getProgressDetail (): ProgressDetail
116+ public function getProgressDetail (): ? ProgressDetail
117117 {
118118 return $ this ->progressDetail ;
119119 }
120120
121- public function setProgressDetail (ProgressDetail $ progressDetail ): self
121+ public function setProgressDetail (? ProgressDetail $ progressDetail ): self
122122 {
123123 $ this ->progressDetail = $ progressDetail ;
124124
@@ -128,15 +128,15 @@ public function setProgressDetail(ProgressDetail $progressDetail): self
128128 /**
129129 * Image ID or Digest.
130130 */
131- public function getAux (): ImageID
131+ public function getAux (): ? ImageID
132132 {
133133 return $ this ->aux ;
134134 }
135135
136136 /**
137137 * Image ID or Digest.
138138 */
139- public function setAux (ImageID $ aux ): self
139+ public function setAux (? ImageID $ aux ): self
140140 {
141141 $ this ->aux = $ aux ;
142142
0 commit comments