Passed
Push — master ( 7adaf7...444ec8 )
by Daimona
02:31
created
includes/ContextSource.php 1 patch
Spacing   +9 added lines, -9 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
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	/** @var Controller */
20 20
 	private $controller;
21 21
 
22
-	public function __construct() {
22
+	public function __construct () {
23 23
 		$this->setLogger( new Logger );
24 24
 		$this->setConfig( Config::getInstance() );
25 25
 		$this->setController( new Controller );
@@ -28,42 +28,42 @@  discard block
 block discarded – undo
28 28
 	/**
29 29
 	 * @return LoggerInterface
30 30
 	 */
31
-	protected function getLogger() : LoggerInterface {
31
+	protected function getLogger () : LoggerInterface {
32 32
 		return $this->logger;
33 33
 	}
34 34
 
35 35
 	/**
36 36
 	 * @inheritDoc
37 37
 	 */
38
-	public function setLogger( LoggerInterface $logger ) {
38
+	public function setLogger ( LoggerInterface $logger ) {
39 39
 		$this->logger = $logger;
40 40
 	}
41 41
 
42 42
 	/**
43 43
 	 * @return Config
44 44
 	 */
45
-	protected function getConfig() : Config {
45
+	protected function getConfig () : Config {
46 46
 		return $this->config;
47 47
 	}
48 48
 
49 49
 	/**
50 50
 	 * @param Config $cfg
51 51
 	 */
52
-	protected function setConfig( Config $cfg ) {
52
+	protected function setConfig ( Config $cfg ) {
53 53
 		$this->config = $cfg;
54 54
 	}
55 55
 
56 56
 	/**
57 57
 	 * @return Controller
58 58
 	 */
59
-	protected function getController() : Controller {
59
+	protected function getController () : Controller {
60 60
 		return $this->controller;
61 61
 	}
62 62
 
63 63
 	/**
64 64
 	 * @param Controller $controller
65 65
 	 */
66
-	protected function setController( Controller $controller ) {
66
+	protected function setController ( Controller $controller ) {
67 67
 		$this->controller = $controller;
68 68
 	}
69 69
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @param string $key
74 74
 	 * @return Message
75 75
 	 */
76
-	protected function msg( string $key ) : Message {
76
+	protected function msg ( string $key ) : Message {
77 77
 		return new Message( $key );
78 78
 	}
79 79
 }
Please login to merge, or discard this patch.
includes/Task/Subtask/UserNotice.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\Task\Subtask;
4 4
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 	/**
12 12
 	 * @inheritDoc
13 13
 	 */
14
-	public function runInternal() : int {
14
+	public function runInternal () : int {
15 15
 		$pages = $this->getDataProvider()->getCreatedPages();
16 16
 		$users = $this->getDataProvider()->getUsersToProcess();
17 17
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 			return TaskResult::STATUS_NOTHING;
20 20
 		}
21 21
 
22
-		$ricNums = [];
22
+		$ricNums = [ ];
23 23
 		foreach ( $pages as $page ) {
24 24
 			$ricNums[ $page->getUser()->getName() ] = $page->getNum();
25 25
 		}
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 * @param string $user
38 38
 	 * @param int $ricNum
39 39
 	 */
40
-	protected function addMsg( string $user, int $ricNum ) {
40
+	protected function addMsg ( string $user, int $ricNum ) {
41 41
 		$this->getLogger()->info( "Leaving msg to $user" );
42 42
 		$msg = $this->msg( 'user-notice-msg' )->params( [ '$num' => $ricNum ] )->text();
43 43
 
Please login to merge, or discard this patch.
includes/Task/TaskBase.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\Task;
4 4
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 abstract class TaskBase extends ContextSource {
13 13
 	/** @var string[] */
14
-	protected $errors = [];
14
+	protected $errors = [ ];
15 15
 	/** @var TaskDataProvider */
16 16
 	protected $dataProvider;
17 17
 
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
 	 *
21 21
 	 * @param TaskDataProvider $dataProvider
22 22
 	 */
23
-	final public function __construct( TaskDataProvider $dataProvider ) {
23
+	final public function __construct ( TaskDataProvider $dataProvider ) {
24 24
 		set_exception_handler( [ $this, 'handleException' ] );
25 25
 		set_error_handler( [ $this, 'handleError' ] );
26 26
 		parent::__construct();
27 27
 		$this->dataProvider = $dataProvider;
28 28
 	}
29 29
 
30
-	public function __destruct() {
30
+	public function __destruct () {
31 31
 		restore_error_handler();
32 32
 		restore_exception_handler();
33 33
 	}
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 *
38 38
 	 * @return TaskResult
39 39
 	 */
40
-	final public function run() : TaskResult {
40
+	final public function run () : TaskResult {
41 41
 		$class = ( new \ReflectionClass( $this ) )->getShortName();
42 42
 		$opName = $this->getOperationName();
43 43
 		$this->getLogger()->info( "Starting $opName $class" );
@@ -68,14 +68,14 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @return int One of the STATUS_* constants
70 70
 	 */
71
-	abstract protected function runInternal() : int;
71
+	abstract protected function runInternal () : int;
72 72
 
73 73
 	/**
74 74
 	 * How this operation should be called in logs
75 75
 	 *
76 76
 	 * @return string
77 77
 	 */
78
-	abstract public function getOperationName() : string;
78
+	abstract public function getOperationName () : string;
79 79
 
80 80
 	/**
81 81
 	 * Exception handler.
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 * @param \Throwable $ex
84 84
 	 * @protected
85 85
 	 */
86
-	public function handleException( \Throwable $ex ) {
86
+	public function handleException ( \Throwable $ex ) {
87 87
 		$this->getLogger()->error(
88 88
 			( new \ReflectionClass( $ex ) )->getShortName() . ': ' .
89 89
 			$ex->getMessage() . "\nin " . $ex->getFile() . ' line ' .
@@ -100,14 +100,14 @@  discard block
 block discarded – undo
100 100
 	 * @param int $errline
101 101
 	 * @protected
102 102
 	 */
103
-	public function handleError( $errno, $errstr, $errfile, $errline ) {
103
+	public function handleError ( $errno, $errstr, $errfile, $errline ) {
104 104
 		throw new \ErrorException( $errstr, 0, $errno, $errfile, $errline );
105 105
 	}
106 106
 
107 107
 	/**
108 108
 	 * @return TaskDataProvider
109 109
 	 */
110
-	protected function getDataProvider() : TaskDataProvider {
110
+	protected function getDataProvider () : TaskDataProvider {
111 111
 		return $this->dataProvider;
112 112
 	}
113 113
 }
Please login to merge, or discard this patch.
includes/Wiki/Controller.php 1 patch
Spacing   +12 added lines, -12 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
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	/**
28 28
 	 * @param string $domain The URL of the wiki, if different from default
29 29
 	 */
30
-	public function __construct( string $domain = DEFAULT_URL ) {
30
+	public function __construct ( string $domain = DEFAULT_URL ) {
31 31
 		$this->logger = new Logger;
32 32
 		$this->domain = $domain;
33 33
 	}
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 * @return string
41 41
 	 * @throws MissingPageException
42 42
 	 */
43
-	public function getPageContent( string $title, int $section = null ) : string {
43
+	public function getPageContent ( string $title, int $section = null ) : string {
44 44
 		$msg = "Retrieving content of page $title" . ( $section !== null ? ", section $section" : '' );
45 45
 		$this->logger->debug( $msg );
46 46
 		$params = [
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 		];
53 53
 
54 54
 		if ( $section !== null ) {
55
-			$params['rvsection'] = $section;
55
+			$params[ 'rvsection' ] = $section;
56 56
 		}
57 57
 
58 58
 		$req = RequestBase::newFromParams( $params )->setUrl( $this->domain );
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 			throw new MissingPageException( $title );
63 63
 		}
64 64
 
65
-		$mainSlot = $page->revisions[0]->slots->main;
65
+		$mainSlot = $page->revisions[ 0 ]->slots->main;
66 66
 
67 67
 		if ( $section !== null && isset( $mainSlot->nosuchsection ) ) {
68 68
 			throw new MissingSectionException( $title, $section );
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 * @param array $params
77 77
 	 * @throws EditException
78 78
 	 */
79
-	public function editPage( array $params ) {
79
+	public function editPage ( array $params ) {
80 80
 		$this->login();
81 81
 
82 82
 		$params = [
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 * Login wrapper. Checks if we're already logged in and clears tokens cache
99 99
 	 * @throws LoginException
100 100
 	 */
101
-	public function login() {
101
+	public function login () {
102 102
 		if ( self::$loggedIn ) {
103 103
 			return;
104 104
 		}
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
 		self::$loggedIn = true;
126 126
 		// Clear tokens cache
127
-		$this->tokens = [];
127
+		$this->tokens = [ ];
128 128
 		$this->logger->info( 'Login succeeded' );
129 129
 	}
130 130
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 * @param string $type
135 135
 	 * @return string
136 136
 	 */
137
-	public function getToken( string $type ) : string {
137
+	public function getToken ( string $type ) : string {
138 138
 		if ( !isset( $this->tokens[ $type ] ) ) {
139 139
 			$params = [
140 140
 				'action' => 'query',
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 	 * @param string $title
158 158
 	 * @return int
159 159
 	 */
160
-	public function getPageCreationTS( string $title ) : int {
160
+	public function getPageCreationTS ( string $title ) : int {
161 161
 		$params = [
162 162
 			'action' => 'query',
163 163
 			'prop' => 'revisions',
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
 		$res = RequestBase::newFromParams( $params )->setUrl( $this->domain )->execute();
172 172
 		$data = $res->query->pages;
173
-		return strtotime( reset( $data )->revisions[0]->timestamp );
173
+		return strtotime( reset( $data )->revisions[ 0 ]->timestamp );
174 174
 	}
175 175
 
176 176
 	/**
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 	 * @param string $title
180 180
 	 * @param string $reason
181 181
 	 */
182
-	public function protectPage( string $title, string $reason ) {
182
+	public function protectPage ( string $title, string $reason ) {
183 183
 		$this->logger->info( "Protecting page $title" );
184 184
 		$this->login();
185 185
 
Please login to merge, or discard this patch.
includes/Task/Subtask/UpdatesAround.php 1 patch
Spacing   +7 added lines, -7 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\Task\Subtask;
4 4
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	/**
16 16
 	 * @inheritDoc
17 17
 	 */
18
-	public function runInternal() : int {
18
+	public function runInternal () : int {
19 19
 		$pages = $this->getDataProvider()->getCreatedPages();
20 20
 
21 21
 		if ( !$pages ) {
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 *
38 38
 	 * @param PageRiconferma[] $pages
39 39
 	 */
40
-	protected function addToMainPage( array $pages ) {
40
+	protected function addToMainPage ( array $pages ) {
41 41
 		$this->getLogger()->info(
42 42
 			'Adding the following to main: ' . implode( ', ', $pages )
43 43
 		);
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	 *
65 65
 	 * @param PageRiconferma[] $pages
66 66
 	 */
67
-	protected function addToVotazioni( array $pages ) {
67
+	protected function addToVotazioni ( array $pages ) {
68 68
 		$this->getLogger()->info(
69 69
 			'Adding the following to votes: ' . implode( ', ', $pages )
70 70
 		);
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 			$beforeReg = '!INSERIRE LA NOTIZIA PIÙ NUOVA IN CIMA.+!m';
94 94
 			// Replace semicolon with full stop
95 95
 			$newLines = substr( $newLines, 0, -2 ) . ".\n";
96
-			$newContent = preg_replace( $beforeReg, '$0' . "\n{$matches[0]}\n$newLines", $content, 1 );
96
+			$newContent = preg_replace( $beforeReg, '$0' . "\n{$matches[ 0 ]}\n$newLines", $content, 1 );
97 97
 		}
98 98
 
99 99
 		$summary = $this->msg( 'vote-page-summary' )
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 	 *
113 113
 	 * @param int $amount
114 114
 	 */
115
-	protected function addToNews( int $amount ) {
115
+	protected function addToNews ( int $amount ) {
116 116
 		$this->getLogger()->info( "Increasing the news counter by $amount" );
117 117
 		$newsPage = new Page( $this->getConfig()->get( 'news-page-title' ) );
118 118
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 			throw new TaskException( 'Param not found in news page' );
126 126
 		}
127 127
 
128
-		$newNum = (int)$matches[2] + $amount;
128
+		$newNum = (int)$matches[ 2 ] + $amount;
129 129
 		$newContent = preg_replace( $reg, '${1}' . $newNum, $content );
130 130
 
131 131
 		$summary = $this->msg( 'news-page-summary' )
Please login to merge, or discard this patch.
includes/Task/Subtask/ArchivePages.php 1 patch
Spacing   +12 added lines, -12 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\Task\Subtask;
4 4
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	/**
15 15
 	 * @inheritDoc
16 16
 	 */
17
-	public function runInternal() : int {
17
+	public function runInternal () : int {
18 18
 		$pages = $this->getDataProvider()->getPagesToClose();
19 19
 
20 20
 		if ( !$pages ) {
@@ -33,15 +33,15 @@  discard block
 block discarded – undo
33 33
 	 * @param PageRiconferma[] $pages
34 34
 	 * @see UpdatesAround::addToMainPage()
35 35
 	 */
36
-	protected function removeFromMainPage( array $pages ) {
36
+	protected function removeFromMainPage ( array $pages ) {
37 37
 		$this->getLogger()->info(
38 38
 			'Removing from main: ' . implode( ', ', $pages )
39 39
 		);
40 40
 
41 41
 		$mainPage = new Page( $this->getConfig()->get( 'main-page-title' ) );
42
-		$remove = [];
42
+		$remove = [ ];
43 43
 		foreach ( $pages as $page ) {
44
-			$remove[] = '{{' . $page->getTitle() . '}}';
44
+			$remove[ ] = '{{' . $page->getTitle() . '}}';
45 45
 		}
46 46
 
47 47
 		$summary = $this->msg( 'close-main-summary' )
@@ -59,17 +59,17 @@  discard block
 block discarded – undo
59 59
 	 *
60 60
 	 * @param PageRiconferma[] $pages
61 61
 	 */
62
-	protected function addToArchive( array $pages ) {
62
+	protected function addToArchive ( array $pages ) {
63 63
 		$this->getLogger()->info(
64 64
 			'Adding to archive: ' . implode( ', ', $pages )
65 65
 		);
66 66
 
67
-		$simple = $votes = [];
67
+		$simple = $votes = [ ];
68 68
 		foreach ( $pages as $page ) {
69 69
 			if ( $page->isVote() ) {
70
-				$votes[] = $page;
70
+				$votes[ ] = $page;
71 71
 			} else {
72
-				$simple[] = $page;
72
+				$simple[ ] = $page;
73 73
 			}
74 74
 		}
75 75
 
@@ -86,14 +86,14 @@  discard block
 block discarded – undo
86 86
 	 * @param string $archiveTitle
87 87
 	 * @param array $pages
88 88
 	 */
89
-	private function reallyAddToArchive( string $archiveTitle, array $pages ) {
89
+	private function reallyAddToArchive ( string $archiveTitle, array $pages ) {
90 90
 		$archivePage = new Page( "$archiveTitle/" . date( 'Y' ) );
91 91
 
92 92
 		$append = "\n";
93
-		$archivedList = [];
93
+		$archivedList = [ ];
94 94
 		foreach ( $pages as $page ) {
95 95
 			$append .= '{{' . $page->getTitle() . "}}\n";
96
-			$archivedList[] = $page->getUserNum();
96
+			$archivedList[ ] = $page->getUserNum();
97 97
 		}
98 98
 
99 99
 		$summary = $this->msg( 'close-archive-summary' )
Please login to merge, or discard this patch.
includes/Task/StartVote.php 1 patch
Spacing   +14 added lines, -14 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\Task;
4 4
 
@@ -16,15 +16,15 @@  discard block
 block discarded – undo
16 16
 	/**
17 17
 	 * @inheritDoc
18 18
 	 */
19
-	protected function getSubtasksMap(): array {
19
+	protected function getSubtasksMap (): array {
20 20
 		// Everything is done here.
21
-		return [];
21
+		return [ ];
22 22
 	}
23 23
 
24 24
 	/**
25 25
 	 * @inheritDoc
26 26
 	 */
27
-	public function runInternal() : int {
27
+	public function runInternal () : int {
28 28
 		$pages = $this->getDataProvider()->getOpenPages();
29 29
 
30 30
 		if ( !$pages ) {
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 	 * @param PageRiconferma[] $pages
39 39
 	 * @return int a STATUS_* constant
40 40
 	 */
41
-	protected function processPages( array $pages ) : int {
42
-		$actualPages = [];
41
+	protected function processPages ( array $pages ) : int {
42
+		$actualPages = [ ];
43 43
 		foreach ( $pages as $page ) {
44 44
 			if ( $page->hasOpposition() && !$page->isVote() ) {
45 45
 				$this->openVote( $page );
46
-				$actualPages[] = $page;
46
+				$actualPages[ ] = $page;
47 47
 			}
48 48
 		}
49 49
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	 *
62 62
 	 * @param PageRiconferma $page
63 63
 	 */
64
-	protected function openVote( PageRiconferma $page ) {
64
+	protected function openVote ( PageRiconferma $page ) {
65 65
 		$this->getLogger()->info( "Starting vote on $page" );
66 66
 
67 67
 		$content = $page->getContent();
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	 * @see SimpleUpdates::updateVotazioni()
101 101
 	 * @see UpdatesAround::addToVotazioni()
102 102
 	 */
103
-	protected function updateVotePage( array $pages ) {
103
+	protected function updateVotePage ( array $pages ) {
104 104
 		$votePage = new Page( $this->getConfig()->get( 'vote-page-title' ) );
105 105
 		$content = $votePage->getContent();
106 106
 
@@ -127,14 +127,14 @@  discard block
 block discarded – undo
127 127
 			$newContent = preg_replace( $introReg, '$0' . "\n$newLines", $newContent, 1 );
128 128
 		} else {
129 129
 			// Start section
130
-			$matches = [];
130
+			$matches = [ ];
131 131
 			if ( preg_match( $introReg, $newContent, $matches ) === 0 ) {
132 132
 				throw new TaskException( 'Intro not found in vote page' );
133 133
 			}
134 134
 			$beforeReg = '!INSERIRE LA NOTIZIA PIÙ NUOVA IN CIMA.+!m';
135 135
 			// Replace semicolon with full stop
136 136
 			$newLines = substr( $newLines, 0, -2 ) . ".\n";
137
-			$newContent = preg_replace( $beforeReg, '$0' . "\n{$matches[0]}\n$newLines", $newContent, 1 );
137
+			$newContent = preg_replace( $beforeReg, '$0' . "\n{$matches[ 0 ]}\n$newLines", $newContent, 1 );
138 138
 		}
139 139
 
140 140
 		$summary = $this->msg( 'vote-start-vote-page-summary' )
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 	 * @see UpdatesAround::addToNews()
157 157
 	 * @see SimpleUpdates::updateNews()
158 158
 	 */
159
-	protected function updateNews( int $amount ) {
159
+	protected function updateNews ( int $amount ) {
160 160
 		$this->getLogger()->info( "Turning $amount pages into votes" );
161 161
 		$newsPage = new Page( $this->getConfig()->get( 'news-page-title' ) );
162 162
 
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
 			throw new TaskException( 'Param "voto" not found in news page' );
172 172
 		}
173 173
 
174
-		$newTac = intval( $newsPage->getMatch( $regTac )[2] ) - $amount ?: '';
175
-		$newVot = intval( $newsPage->getMatch( $regVot )[2] ) + $amount ?: '';
174
+		$newTac = intval( $newsPage->getMatch( $regTac )[ 2 ] ) - $amount ?: '';
175
+		$newVot = intval( $newsPage->getMatch( $regVot )[ 2 ] ) + $amount ?: '';
176 176
 
177 177
 		$newContent = preg_replace( $regTac, '${1}' . $newTac, $content );
178 178
 		$newContent = preg_replace( $regVot, '${1}' . $newVot, $newContent );
Please login to merge, or discard this patch.
includes/Wiki/User.php 1 patch
Spacing   +7 added lines, -7 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
 
@@ -16,21 +16,21 @@  discard block
 block discarded – undo
16 16
 	/**
17 17
 	 * @param string $name
18 18
 	 */
19
-	public function __construct( string $name ) {
19
+	public function __construct ( string $name ) {
20 20
 		$this->name = $name;
21 21
 	}
22 22
 
23 23
 	/**
24 24
 	 * @return string
25 25
 	 */
26
-	public function getName() : string {
26
+	public function getName () : string {
27 27
 		return $this->name;
28 28
 	}
29 29
 
30 30
 	/**
31 31
 	 * @return string[]
32 32
 	 */
33
-	public function getGroups() : array {
33
+	public function getGroups () : array {
34 34
 		if ( $this->groups === null ) {
35 35
 			$usersList = PageBotList::get()->getAdminsList();
36 36
 			$this->groups = array_keys( $usersList[ $this->name ] );
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 * @param string $groupName
45 45
 	 * @return bool
46 46
 	 */
47
-	public function inGroup( string $groupName ) : bool {
47
+	public function inGroup ( string $groupName ) : bool {
48 48
 		return in_array( $groupName, $this->getGroups() );
49 49
 	}
50 50
 
@@ -53,14 +53,14 @@  discard block
 block discarded – undo
53 53
 	 *
54 54
 	 * @inheritDoc
55 55
 	 */
56
-	public function getRegex() : string {
56
+	public function getRegex () : string {
57 57
 		return str_replace( ' ', '[ _]', preg_quote( $this->name ) );
58 58
 	}
59 59
 
60 60
 	/**
61 61
 	 * @return string
62 62
 	 */
63
-	public function __toString() {
63
+	public function __toString () {
64 64
 		return $this->name;
65 65
 	}
66 66
 }
Please login to merge, or discard this patch.
includes/Wiki/Page/Page.php 1 patch
Spacing   +14 added lines, -14 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\Page;
4 4
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 * @param string $title
22 22
 	 * @param string $domain The site where the page lives, if different from default
23 23
 	 */
24
-	public function __construct( string $title, string $domain = DEFAULT_URL ) {
24
+	public function __construct ( string $title, string $domain = DEFAULT_URL ) {
25 25
 		$this->title = $title;
26 26
 		$this->controller = new Controller( $domain );
27 27
 	}
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	/**
30 30
 	 * @return string
31 31
 	 */
32
-	public function getTitle() : string {
32
+	public function getTitle () : string {
33 33
 		return $this->title;
34 34
 	}
35 35
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 * @param int|null $section A section number to retrieve the content of that section
40 40
 	 * @return string
41 41
 	 */
42
-	public function getContent( int $section = null ) : string {
42
+	public function getContent ( int $section = null ) : string {
43 43
 		if ( $this->content === null ) {
44 44
 			$this->content = $this->controller->getPageContent( $this->title, $section );
45 45
 		}
@@ -51,16 +51,16 @@  discard block
 block discarded – undo
51 51
 	 *
52 52
 	 * @param array $params
53 53
 	 */
54
-	public function edit( array $params ) {
54
+	public function edit ( array $params ) {
55 55
 		$params = [
56 56
 			'title' => $this->getTitle()
57 57
 		] + $params;
58 58
 
59 59
 		$this->controller->editPage( $params );
60
-		if ( isset( $params['text'] ) ) {
61
-			$this->content = $params['text'];
62
-		} elseif ( isset( $params['appendtext'] ) ) {
63
-			$this->content .= $params['appendtext'];
60
+		if ( isset( $params[ 'text' ] ) ) {
61
+			$this->content = $params[ 'text' ];
62
+		} elseif ( isset( $params[ 'appendtext' ] ) ) {
63
+			$this->content .= $params[ 'appendtext' ];
64 64
 		} else {
65 65
 			// Clear the cache anyway
66 66
 			( new Logger )->warning( 'Resetting content cache. Params: ' . var_export( $params, true ) );
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 	 * @param string $regex
75 75
 	 * @return bool
76 76
 	 */
77
-	public function matches( string $regex ) : bool {
77
+	public function matches ( string $regex ) : bool {
78 78
 		return (bool)preg_match( $regex, $this->getContent() );
79 79
 	}
80 80
 
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
 	 * @return string[]
87 87
 	 * @throws \Exception
88 88
 	 */
89
-	public function getMatch( string $regex ) : array {
90
-		$ret = [];
89
+	public function getMatch ( string $regex ) : array {
90
+		$ret = [ ];
91 91
 		if ( preg_match( $regex, $this->getContent(), $ret ) === 0 ) {
92 92
 			throw new \Exception( 'The content does not match the given regex' );
93 93
 		}
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	 *
100 100
 	 * @inheritDoc
101 101
 	 */
102
-	public function getRegex() : string {
102
+	public function getRegex () : string {
103 103
 		return str_replace( ' ', '[ _]', preg_quote( $this->title ) );
104 104
 	}
105 105
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 *
109 109
 	 * @return string
110 110
 	 */
111
-	public function __toString() {
111
+	public function __toString () {
112 112
 		return $this->getTitle();
113 113
 	}
114 114
 }
Please login to merge, or discard this patch.