Passed
Push — master ( dbd8ef...8368ac )
by Daimona
11:17
created
src/ContextSource.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme;
4 4
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 * @param MessageProvider $mp
38 38
 	 * @param PageBotList $pbl
39 39
 	 */
40
-	public function __construct(
40
+	public function __construct (
41 41
 		LoggerInterface $logger,
42 42
 		WikiGroup $wikiGroup,
43 43
 		MessageProvider $mp,
@@ -53,14 +53,14 @@  discard block
 block discarded – undo
53 53
 	/**
54 54
 	 * @return LoggerInterface
55 55
 	 */
56
-	protected function getLogger(): LoggerInterface {
56
+	protected function getLogger (): LoggerInterface {
57 57
 		return $this->logger;
58 58
 	}
59 59
 
60 60
 	/**
61 61
 	 * @inheritDoc
62 62
 	 */
63
-	public function setLogger( LoggerInterface $logger ): void {
63
+	public function setLogger ( LoggerInterface $logger ): void {
64 64
 		$this->logger = $logger;
65 65
 	}
66 66
 
@@ -70,21 +70,21 @@  discard block
 block discarded – undo
70 70
 	 * @param string $optname
71 71
 	 * @return mixed
72 72
 	 */
73
-	protected function getOpt( string $optname ) {
73
+	protected function getOpt ( string $optname ) {
74 74
 		return $this->getConfig()->get( $optname );
75 75
 	}
76 76
 
77 77
 	/**
78 78
 	 * @return Config
79 79
 	 */
80
-	protected function getConfig(): Config {
80
+	protected function getConfig (): Config {
81 81
 		return $this->config;
82 82
 	}
83 83
 
84 84
 	/**
85 85
 	 * @param Config $cfg
86 86
 	 */
87
-	protected function setConfig( Config $cfg ): void {
87
+	protected function setConfig ( Config $cfg ): void {
88 88
 		$this->config = $cfg;
89 89
 	}
90 90
 
@@ -92,35 +92,35 @@  discard block
 block discarded – undo
92 92
 	 * Shorthand
93 93
 	 * @return Wiki
94 94
 	 */
95
-	protected function getWiki(): Wiki {
95
+	protected function getWiki (): Wiki {
96 96
 		return $this->getWikiGroup()->getMainWiki();
97 97
 	}
98 98
 
99 99
 	/**
100 100
 	 * @return WikiGroup
101 101
 	 */
102
-	protected function getWikiGroup(): WikiGroup {
102
+	protected function getWikiGroup (): WikiGroup {
103 103
 		return $this->wikiGroup;
104 104
 	}
105 105
 
106 106
 	/**
107 107
 	 * @param WikiGroup $wikiGroup
108 108
 	 */
109
-	protected function setWikiGroup( WikiGroup $wikiGroup ): void {
109
+	protected function setWikiGroup ( WikiGroup $wikiGroup ): void {
110 110
 		$this->wikiGroup = $wikiGroup;
111 111
 	}
112 112
 
113 113
 	/**
114 114
 	 * @return MessageProvider
115 115
 	 */
116
-	protected function getMessageProvider(): MessageProvider {
116
+	protected function getMessageProvider (): MessageProvider {
117 117
 		return $this->messageProvider;
118 118
 	}
119 119
 
120 120
 	/**
121 121
 	 * @param MessageProvider $mp
122 122
 	 */
123
-	protected function setMessageProvider( MessageProvider $mp ): void {
123
+	protected function setMessageProvider ( MessageProvider $mp ): void {
124 124
 		$this->messageProvider = $mp;
125 125
 	}
126 126
 
@@ -130,21 +130,21 @@  discard block
 block discarded – undo
130 130
 	 * @param string $key
131 131
 	 * @return Message
132 132
 	 */
133
-	protected function msg( string $key ): Message {
133
+	protected function msg ( string $key ): Message {
134 134
 		return $this->messageProvider->getMessage( $key );
135 135
 	}
136 136
 
137 137
 	/**
138 138
 	 * @return PageBotList
139 139
 	 */
140
-	public function getBotList(): PageBotList {
140
+	public function getBotList (): PageBotList {
141 141
 		return $this->pageBotList;
142 142
 	}
143 143
 
144 144
 	/**
145 145
 	 * @return RequestFactory
146 146
 	 */
147
-	public function getRequestFactory(): RequestFactory {
147
+	public function getRequestFactory (): RequestFactory {
148 148
 		return $this->getWiki()->getRequestFactory();
149 149
 	}
150 150
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 	 * @param string $title
155 155
 	 * @return Page
156 156
 	 */
157
-	protected function getPage( string $title ): Page {
157
+	protected function getPage ( string $title ): Page {
158 158
 		return new Page( $title, $this->getWiki() );
159 159
 	}
160 160
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 	 * @param string $name
165 165
 	 * @return User
166 166
 	 */
167
-	protected function getUser( string $name ): User {
167
+	protected function getUser ( string $name ): User {
168 168
 		$ui = $this->getBotList()->getUserInfo( $name );
169 169
 		return new User( $ui, $this->getWiki() );
170 170
 	}
Please login to merge, or discard this patch.
src/Message/Message.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Message;
4 4
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	/**
24 24
 	 * @param string $value
25 25
 	 */
26
-	public function __construct( string $value ) {
26
+	public function __construct ( string $value ) {
27 27
 		$this->value = $value;
28 28
 	}
29 29
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	 * @phan-param array<string,int|string> $args
33 33
 	 * @return self
34 34
 	 */
35
-	public function params( array $args ): self {
35
+	public function params ( array $args ): self {
36 36
 		$this->value = strtr( $this->value, $args );
37 37
 		return $this;
38 38
 	}
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	/**
41 41
 	 * @return string
42 42
 	 */
43
-	public function text(): string {
43
+	public function text (): string {
44 44
 		$this->parsePlurals();
45 45
 		return $this->value;
46 46
 	}
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * Replace {{$plur|<amount>|sing|plur}}
50 50
 	 */
51
-	protected function parsePlurals(): void {
51
+	protected function parsePlurals (): void {
52 52
 		$reg = '!\{\{\$plur\|(?P<amount>\d+)\|(?P<sing>[^}|]+)\|(?P<plur>[^|}]+)}}!';
53 53
 
54 54
 		if ( preg_match( $reg, $this->value ) === 0 ) {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 			 * @return string
62 62
 			 */
63 63
 			static function ( array $matches ): string {
64
-				return (int)$matches['amount'] > 1 ? trim( $matches['plur'] ) : trim( $matches['sing'] );
64
+				return (int)$matches[ 'amount' ] > 1 ? trim( $matches[ 'plur' ] ) : trim( $matches[ 'sing' ] );
65 65
 			},
66 66
 			$this->value
67 67
 		);
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @param string $timeString Full format, e.g. "15 aprile 2019 18:27"
74 74
 	 * @return int
75 75
 	 */
76
-	public static function getTimestampFromLocalTime( string $timeString ): int {
76
+	public static function getTimestampFromLocalTime ( string $timeString ): int {
77 77
 		$englishTime = str_ireplace(
78 78
 			array_values( self::MONTHS ),
79 79
 			array_keys( self::MONTHS ),
@@ -92,12 +92,12 @@  discard block
 block discarded – undo
92 92
 	 * @param string $emptyText
93 93
 	 * @return string
94 94
 	 */
95
-	public static function commaList( array $data, string $emptyText = 'nessuno' ): string {
95
+	public static function commaList ( array $data, string $emptyText = 'nessuno' ): string {
96 96
 		if ( count( $data ) > 1 ) {
97 97
 			$last = array_pop( $data );
98 98
 			$ret = implode( ', ', $data ) . " e $last";
99 99
 		} elseif ( $data ) {
100
-			$ret = (string)$data[0];
100
+			$ret = (string)$data[ 0 ];
101 101
 		} else {
102 102
 			$ret = $emptyText;
103 103
 		}
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 		return $ret;
106 106
 	}
107 107
 
108
-	public function __toString(): string {
108
+	public function __toString (): string {
109 109
 		return $this->text();
110 110
 	}
111 111
 }
Please login to merge, or discard this patch.
src/Utils/IRegexable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Utils;
4 4
 
@@ -9,5 +9,5 @@  discard block
 block discarded – undo
9 9
 	 * @param string $delimiter
10 10
 	 * @return string
11 11
 	 */
12
-	public function getRegex( string $delimiter ): string;
12
+	public function getRegex ( string $delimiter ): string;
13 13
 }
Please login to merge, or discard this patch.
src/Utils/RegexUtils.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Utils;
4 4
 
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 	 * @param IRegexable ...$elements
11 11
 	 * @return string
12 12
 	 */
13
-	public static function regexFromArray(
13
+	public static function regexFromArray (
14 14
 		string $delimiter = '/',
15 15
 		IRegexable ...$elements
16 16
 	): string {
17
-		$bits = [];
17
+		$bits = [ ];
18 18
 		foreach ( $elements as $el ) {
19
-			$bits[] = $el->getRegex( $delimiter );
19
+			$bits[ ] = $el->getRegex( $delimiter );
20 20
 		}
21 21
 		return '(?:' . implode( '|', $bits ) . ')';
22 22
 	}
Please login to merge, or discard this patch.
src/Request/RequestFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Request;
4 4
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	 * @param LoggerInterface $logger
15 15
 	 * @param string $domain
16 16
 	 */
17
-	public function __construct( LoggerInterface $logger, string $domain ) {
17
+	public function __construct ( LoggerInterface $logger, string $domain ) {
18 18
 		$this->logger = $logger;
19 19
 		$this->domain = $domain;
20 20
 	}
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	 * @phan-param array<int|string|bool> $params
25 25
 	 * @return RequestBase
26 26
 	 */
27
-	public function newFromParams( array $params ): RequestBase {
27
+	public function newFromParams ( array $params ): RequestBase {
28 28
 		if ( extension_loaded( 'curl' ) ) {
29 29
 			return new CurlRequest( $this->logger, $params, $this->domain );
30 30
 		}
Please login to merge, or discard this patch.
src/Request/NativeRequest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Request;
4 4
 
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 	/**
10 10
 	 * @inheritDoc
11 11
 	 */
12
-	protected function reallyMakeRequest( string $params ): string {
12
+	protected function reallyMakeRequest ( string $params ): string {
13 13
 		$context = [
14 14
 			'http' => [
15 15
 				'method' => $this->method,
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 		];
19 19
 		$url = $this->url;
20 20
 		if ( $this->method === self::METHOD_POST ) {
21
-			$context['http']['content'] = $params;
21
+			$context[ 'http' ][ 'content' ] = $params;
22 22
 		} else {
23 23
 			$url = "$url?$params";
24 24
 		}
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
 		foreach ( $http_response_header as $header ) {
29 29
 			/** @var string[] $bits */
30 30
 			$bits = explode( ':', $header, 2 );
31
-			if ( trim( $bits[0] ) === 'Set-Cookie' ) {
32
-				$this->newCookies[] = $bits[1];
31
+			if ( trim( $bits[ 0 ] ) === 'Set-Cookie' ) {
32
+				$this->newCookies[ ] = $bits[ 1 ];
33 33
 			}
34 34
 		}
35 35
 
Please login to merge, or discard this patch.
src/Request/CurlRequest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Request;
4 4
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	 * @inheritDoc
14 14
 	 * @throws APIRequestException
15 15
 	 */
16
-	protected function reallyMakeRequest( string $params ): string {
16
+	protected function reallyMakeRequest ( string $params ): string {
17 17
 		$curl = curl_init();
18 18
 		if ( $curl === false ) {
19 19
 			throw new APIRequestException( 'Cannot open cURL handler.' );
@@ -59,11 +59,11 @@  discard block
 block discarded – undo
59 59
 	 * @internal Only used as CB for cURL (CURLOPT_HEADERFUNCTION)
60 60
 	 * @suppress PhanUnreferencedPublicMethod,PhanUnusedPublicNoOverrideMethodParameter
61 61
 	 */
62
-	public function headersHandler( $ch, string $header ): int {
62
+	public function headersHandler ( $ch, string $header ): int {
63 63
 		/** @var string[] $bits */
64 64
 		$bits = explode( ':', $header, 2 );
65
-		if ( trim( $bits[0] ) === 'Set-Cookie' ) {
66
-			$this->newCookies[] = $bits[1];
65
+		if ( trim( $bits[ 0 ] ) === 'Set-Cookie' ) {
66
+			$this->newCookies[ ] = $bits[ 1 ];
67 67
 		}
68 68
 
69 69
 		return strlen( $header );
Please login to merge, or discard this patch.
src/Request/RequestBase.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Request;
4 4
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	/** @var string */
42 42
 	protected $method = self::METHOD_GET;
43 43
 	/** @var string[] */
44
-	protected $newCookies = [];
44
+	protected $newCookies = [ ];
45 45
 
46 46
 	/** @var LoggerInterface */
47 47
 	protected $logger;
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * @phan-param array<int|string|bool> $params
55 55
 	 * @param string $domain
56 56
 	 */
57
-	public function __construct( LoggerInterface $logger, array $params, string $domain ) {
57
+	public function __construct ( LoggerInterface $logger, array $params, string $domain ) {
58 58
 		$this->logger = $logger;
59 59
 		$this->params = [ 'format' => 'json' ] + $params;
60 60
 		$this->url = $domain;
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	 *
66 66
 	 * @return self For chaining
67 67
 	 */
68
-	public function setPost(): self {
68
+	public function setPost (): self {
69 69
 		$this->method = self::METHOD_POST;
70 70
 		return $this;
71 71
 	}
@@ -74,12 +74,12 @@  discard block
 block discarded – undo
74 74
 	 * Execute a query request
75 75
 	 * @return Generator
76 76
 	 */
77
-	public function executeAsQuery(): Generator {
78
-		if ( ( $this->params['action'] ?? false ) !== 'query' ) {
77
+	public function executeAsQuery (): Generator {
78
+		if ( ( $this->params[ 'action' ] ?? false ) !== 'query' ) {
79 79
 			throw new BadMethodCallException( 'Not an ApiQuery!' );
80 80
 		}
81 81
 		// TODO Is this always correct?
82
-		$key = $this->params['list'] ?? 'pages';
82
+		$key = $this->params[ 'list' ] ?? 'pages';
83 83
 		$curParams = $this->params;
84 84
 		$lim = $this->parseLimit();
85 85
 		do {
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 * Execute a request that doesn't need any continuation.
109 109
 	 * @return stdClass
110 110
 	 */
111
-	public function executeSingle(): stdClass {
111
+	public function executeSingle (): stdClass {
112 112
 		$curParams = $this->params;
113 113
 		$res = $this->makeRequestInternal( $curParams );
114 114
 		$this->handleErrorAndWarnings( $res );
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	/**
119 119
 	 * @return int
120 120
 	 */
121
-	private function parseLimit(): int {
121
+	private function parseLimit (): int {
122 122
 		foreach ( $this->params as $name => $val ) {
123 123
 			if ( substr( $name, -strlen( 'limit' ) ) === 'limit' ) {
124 124
 				return $val === 'max' ? -1 : (int)$val;
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 	 * @param string $resKey
136 136
 	 * @return int|null
137 137
 	 */
138
-	private function countQueryResults( stdClass $res, string $resKey ): ?int {
138
+	private function countQueryResults ( stdClass $res, string $resKey ): ?int {
139 139
 		if ( !isset( $res->query->$resKey ) ) {
140 140
 			return null;
141 141
 		}
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
 	 * @phan-param array<int|string|bool> $params
164 164
 	 * @return stdClass
165 165
 	 */
166
-	private function makeRequestInternal( array $params ): stdClass {
166
+	private function makeRequestInternal ( array $params ): stdClass {
167 167
 		if ( $this->method === self::METHOD_POST ) {
168
-			$params['maxlag'] = self::MAXLAG;
168
+			$params[ 'maxlag' ] = self::MAXLAG;
169 169
 		}
170 170
 		$query = http_build_query( $params );
171 171
 
@@ -186,18 +186,18 @@  discard block
 block discarded – undo
186 186
 	 * @param string $params
187 187
 	 * @return string
188 188
 	 */
189
-	abstract protected function reallyMakeRequest( string $params ): string;
189
+	abstract protected function reallyMakeRequest ( string $params ): string;
190 190
 
191 191
 	/**
192 192
 	 * After a request, set cookies for the next ones
193 193
 	 *
194 194
 	 * @param string[] $cookies
195 195
 	 */
196
-	protected function setCookies( array $cookies ): void {
196
+	protected function setCookies ( array $cookies ): void {
197 197
 		foreach ( $cookies as $cookie ) {
198 198
 			/** @var string[] $bits */
199 199
 			$bits = explode( ';', $cookie );
200
-			[ $name, $value ] = explode( '=', $bits[0] );
200
+			[ $name, $value ] = explode( '=', $bits[ 0 ] );
201 201
 			self::$cookiesToSet[ $name ] = $value;
202 202
 		}
203 203
 	}
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 	 * @param stdClass $res
209 209
 	 * @return APIRequestException
210 210
 	 */
211
-	private function getException( stdClass $res ): APIRequestException {
211
+	private function getException ( stdClass $res ): APIRequestException {
212 212
 		switch ( $res->error->code ) {
213 213
 			case 'missingtitle':
214 214
 				$ex = new MissingPageException;
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 * @param stdClass $res
235 235
 	 * @throws APIRequestException
236 236
 	 */
237
-	protected function handleErrorAndWarnings( stdClass $res ): void {
237
+	protected function handleErrorAndWarnings ( stdClass $res ): void {
238 238
 		if ( isset( $res->error ) ) {
239 239
 			throw $this->getException( $res );
240 240
 		}
@@ -250,14 +250,14 @@  discard block
 block discarded – undo
250 250
 	 *
251 251
 	 * @return string[]
252 252
 	 */
253
-	protected function getHeaders(): array {
253
+	protected function getHeaders (): array {
254 254
 		$ret = self::HEADERS;
255 255
 		if ( self::$cookiesToSet ) {
256
-			$cookies = [];
256
+			$cookies = [ ];
257 257
 			foreach ( self::$cookiesToSet as $cname => $cval ) {
258
-				$cookies[] = trim( "$cname=$cval" );
258
+				$cookies[ ] = trim( "$cname=$cval" );
259 259
 			}
260
-			$ret[] = 'Cookie: ' . implode( '; ', $cookies );
260
+			$ret[ ] = 'Cookie: ' . implode( '; ', $cookies );
261 261
 		}
262 262
 		return $ret;
263 263
 	}
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 	 * @param string[] $headers
269 269
 	 * @return string
270 270
 	 */
271
-	protected function buildHeadersString( array $headers ): string {
271
+	protected function buildHeadersString ( array $headers ): string {
272 272
 		$ret = '';
273 273
 		foreach ( $headers as $header ) {
274 274
 			$ret .= "$header\r\n";
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 	 * @param string $actualParams
281 281
 	 * @return string
282 282
 	 */
283
-	protected function getDebugURL( string $actualParams ): string {
283
+	protected function getDebugURL ( string $actualParams ): string {
284 284
 		return strpos( $this->url, 'login' ) !== false
285 285
 			? '[Login request]'
286 286
 			: "{$this->url}?$actualParams";
Please login to merge, or discard this patch.
src/Wiki/LoginInfo.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare( strict_types=1 );
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace BotRiconferme\Wiki;
4 4
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	 * @param string $username
16 16
 	 * @param string $password
17 17
 	 */
18
-	public function __construct( string $username, string $password ) {
18
+	public function __construct ( string $username, string $password ) {
19 19
 		$this->username = $username;
20 20
 		$this->password = $password;
21 21
 	}
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
 	/**
24 24
 	 * @return string
25 25
 	 */
26
-	public function getUsername(): string {
26
+	public function getUsername (): string {
27 27
 		return $this->username;
28 28
 	}
29 29
 
30 30
 	/**
31 31
 	 * @return string
32 32
 	 */
33
-	public function getPassword(): string {
33
+	public function getPassword (): string {
34 34
 		return $this->password;
35 35
 	}
36 36
 }
Please login to merge, or discard this patch.