@@ -1,4 +1,4 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 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 |
||
| 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 ) { |
@@ -36,15 +36,15 @@ discard block |
||
| 36 | 36 | * @param PageRiconferma[] $pages |
| 37 | 37 | * @see OpenUpdates::addToVotazioni() |
| 38 | 38 | */ |
| 39 | - protected function updateVotazioni( array $pages ) : void { |
|
| 39 | + protected function updateVotazioni ( array $pages ) : void { |
|
| 40 | 40 | $this->getLogger()->info( |
| 41 | 41 | 'Updating votazioni: ' . implode( ', ', $pages ) |
| 42 | 42 | ); |
| 43 | 43 | $votePage = $this->getPage( $this->getOpt( 'vote-page-title' ) ); |
| 44 | 44 | |
| 45 | - $users = []; |
|
| 45 | + $users = [ ]; |
|
| 46 | 46 | foreach ( $pages as $page ) { |
| 47 | - $users[] = $this->getUser( $page->getUserName() ); |
|
| 47 | + $users[ ] = $this->getUser( $page->getUserName() ); |
|
| 48 | 48 | } |
| 49 | 49 | $usersReg = RegexUtils::regexFromArray( '!', ...$users ); |
| 50 | 50 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param array $pages |
| 66 | 66 | * @see OpenUpdates::addToNews() |
| 67 | 67 | */ |
| 68 | - protected function updateNews( array $pages ) : void { |
|
| 68 | + protected function updateNews ( array $pages ) : void { |
|
| 69 | 69 | $simpleAmount = $voteAmount = 0; |
| 70 | 70 | foreach ( $pages as $page ) { |
| 71 | 71 | if ( $page->isVote() ) { |
@@ -85,8 +85,8 @@ discard block |
||
| 85 | 85 | $simpleMatches = $newsPage->getMatch( $simpleReg ); |
| 86 | 86 | $voteMatches = $newsPage->getMatch( $voteReg ); |
| 87 | 87 | |
| 88 | - $newSimp = ( (int)$simpleMatches[2] - $simpleAmount ) ?: ''; |
|
| 89 | - $newVote = ( (int)$voteMatches[2] - $voteAmount ) ?: ''; |
|
| 88 | + $newSimp = ( (int)$simpleMatches[ 2 ] - $simpleAmount ) ?: ''; |
|
| 89 | + $newVote = ( (int)$voteMatches[ 2 ] - $voteAmount ) ?: ''; |
|
| 90 | 90 | $newContent = preg_replace( $simpleReg, '${1}' . $newSimp, $newsPage->getContent() ); |
| 91 | 91 | $newContent = preg_replace( $voteReg, '${1}' . $newVote, $newContent ); |
| 92 | 92 | |
@@ -104,12 +104,12 @@ discard block |
||
| 104 | 104 | * |
| 105 | 105 | * @param bool[] $outcomes |
| 106 | 106 | */ |
| 107 | - protected function updateAdminList( array $outcomes ) : void { |
|
| 107 | + protected function updateAdminList ( array $outcomes ) : void { |
|
| 108 | 108 | $this->getLogger()->info( 'Updating admin list' ); |
| 109 | 109 | $adminsPage = $this->getPage( $this->getOpt( 'admins-list-title' ) ); |
| 110 | 110 | $newContent = $adminsPage->getContent(); |
| 111 | 111 | |
| 112 | - $riconfNames = $removeNames = []; |
|
| 112 | + $riconfNames = $removeNames = [ ]; |
|
| 113 | 113 | foreach ( $outcomes as $username => $confirmed ) { |
| 114 | 114 | $user = $this->getUser( $username ); |
| 115 | 115 | $userReg = $user->getRegex( '!' ); |
@@ -124,10 +124,10 @@ discard block |
||
| 124 | 124 | '${1}{{subst:#timel:Ymd}}|' . $nextDate . '$2', |
| 125 | 125 | $newContent |
| 126 | 126 | ); |
| 127 | - $riconfNames[] = $username; |
|
| 127 | + $riconfNames[ ] = $username; |
|
| 128 | 128 | } else { |
| 129 | 129 | $newContent = preg_replace( $reg, '', $newContent ); |
| 130 | - $removeNames[] = $username; |
|
| 130 | + $removeNames[ ] = $username; |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | |
@@ -147,21 +147,21 @@ discard block |
||
| 147 | 147 | /** |
| 148 | 148 | * @param bool[] $outcomes |
| 149 | 149 | */ |
| 150 | - protected function updateCUList( array $outcomes ) : void { |
|
| 150 | + protected function updateCUList ( array $outcomes ) : void { |
|
| 151 | 151 | $this->getLogger()->info( 'Updating CU list.' ); |
| 152 | 152 | $cuList = $this->getPage( $this->getOpt( 'cu-list-title' ) ); |
| 153 | 153 | $newContent = $cuList->getContent(); |
| 154 | 154 | |
| 155 | - $riconfNames = $removeNames = []; |
|
| 155 | + $riconfNames = $removeNames = [ ]; |
|
| 156 | 156 | foreach ( $outcomes as $user => $confirmed ) { |
| 157 | 157 | $userReg = $this->getUser( $user )->getRegex( '!' ); |
| 158 | 158 | $reg = "!(\{\{ *Checkuser *\| *$userReg *\|[^}]+\| *)[\w \d]+(}}.*\n)!"; |
| 159 | 159 | if ( $confirmed ) { |
| 160 | 160 | $newContent = preg_replace( $reg, '${1}{{subst:#time:j F Y}}$2', $newContent ); |
| 161 | - $riconfNames[] = $user; |
|
| 161 | + $riconfNames[ ] = $user; |
|
| 162 | 162 | } else { |
| 163 | 163 | $newContent = preg_replace( $reg, '', $newContent ); |
| 164 | - $removeNames[] = $user; |
|
| 164 | + $removeNames[ ] = $user; |
|
| 165 | 165 | } |
| 166 | 166 | } |
| 167 | 167 | |
@@ -185,8 +185,8 @@ discard block |
||
| 185 | 185 | * @param PageRiconferma[] $pages |
| 186 | 186 | * @return bool[] |
| 187 | 187 | */ |
| 188 | - private function getGroupOutcomes( string $group, array $pages ) : array { |
|
| 189 | - $ret = []; |
|
| 188 | + private function getGroupOutcomes ( string $group, array $pages ) : array { |
|
| 189 | + $ret = [ ]; |
|
| 190 | 190 | foreach ( $pages as $page ) { |
| 191 | 191 | $user = $this->getUser( $page->getUserName() ); |
| 192 | 192 | if ( $user->inGroup( $group ) ) { |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task\Subtask; |
| 4 | 4 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | /** |
| 17 | 17 | * @inheritDoc |
| 18 | 18 | */ |
| 19 | - public function runInternal() : int { |
|
| 19 | + public function runInternal () : int { |
|
| 20 | 20 | $failed = $this->getFailures(); |
| 21 | 21 | if ( !$failed ) { |
| 22 | 22 | return TaskResult::STATUS_NOTHING; |
@@ -38,12 +38,12 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @return PageRiconferma[] |
| 40 | 40 | */ |
| 41 | - private function getFailures() : array { |
|
| 42 | - $ret = []; |
|
| 41 | + private function getFailures () : array { |
|
| 42 | + $ret = [ ]; |
|
| 43 | 43 | $allPages = $this->getDataProvider()->getPagesToClose(); |
| 44 | 44 | foreach ( $allPages as $page ) { |
| 45 | 45 | if ( $page->getOutcome() & PageRiconferma::OUTCOME_FAIL ) { |
| 46 | - $ret[] = $page; |
|
| 46 | + $ret[ ] = $page; |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | return $ret; |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | /** |
| 53 | 53 | * @param User[] $users |
| 54 | 54 | */ |
| 55 | - protected function updateBurList( array $users ) : void { |
|
| 55 | + protected function updateBurList ( array $users ) : void { |
|
| 56 | 56 | $this->getLogger()->info( 'Updating bur list. Removing: ' . implode( ', ', $users ) ); |
| 57 | 57 | $remList = RegexUtils::regexFromArray( '!', ...$users ); |
| 58 | 58 | $burList = $this->getPage( $this->getOpt( 'bur-list-title' ) ); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @param PageRiconferma[] $pages |
| 77 | 77 | */ |
| 78 | - protected function requestRemoval( array $pages ) : void { |
|
| 78 | + protected function requestRemoval ( array $pages ) : void { |
|
| 79 | 79 | $this->getLogger()->info( 'Requesting flag removal for: ' . implode( ', ', $pages ) ); |
| 80 | 80 | |
| 81 | 81 | $metaWiki = $this->getWikiGroup()->getCentralWiki(); |
@@ -115,15 +115,15 @@ discard block |
||
| 115 | 115 | * |
| 116 | 116 | * @param PageRiconferma[] $pages |
| 117 | 117 | */ |
| 118 | - protected function updateAnnunci( array $pages ) : void { |
|
| 118 | + protected function updateAnnunci ( array $pages ) : void { |
|
| 119 | 119 | $this->getLogger()->info( 'Updating annunci' ); |
| 120 | 120 | $section = 1; |
| 121 | 121 | |
| 122 | - $names = []; |
|
| 122 | + $names = [ ]; |
|
| 123 | 123 | $text = ''; |
| 124 | 124 | foreach ( $pages as $page ) { |
| 125 | 125 | $user = $page->getUserName(); |
| 126 | - $names[] = $user; |
|
| 126 | + $names[ ] = $user; |
|
| 127 | 127 | $text .= $this->msg( 'annunci-text' )->params( [ '$user' => $user ] )->text(); |
| 128 | 128 | } |
| 129 | 129 | |
@@ -155,16 +155,16 @@ discard block |
||
| 155 | 155 | * |
| 156 | 156 | * @param PageRiconferma[] $pages |
| 157 | 157 | */ |
| 158 | - protected function updateUltimeNotizie( array $pages ) : void { |
|
| 158 | + protected function updateUltimeNotizie ( array $pages ) : void { |
|
| 159 | 159 | $this->getLogger()->info( 'Updating ultime notizie' ); |
| 160 | 160 | $notiziePage = $this->getPage( $this->getOpt( 'ultimenotizie-page-title' ) ); |
| 161 | 161 | |
| 162 | - $names = []; |
|
| 162 | + $names = [ ]; |
|
| 163 | 163 | $text = ''; |
| 164 | 164 | $msg = $this->msg( 'ultimenotizie-text' ); |
| 165 | 165 | foreach ( $pages as $page ) { |
| 166 | 166 | $user = $page->getUserName(); |
| 167 | - $names[] = $user; |
|
| 167 | + $names[ ] = $user; |
|
| 168 | 168 | $text .= $msg->params( [ '$user' => $user, '$title' => $page->getTitle() ] )->text(); |
| 169 | 169 | } |
| 170 | 170 | |
@@ -193,12 +193,12 @@ discard block |
||
| 193 | 193 | * @param PageRiconferma[] $pages |
| 194 | 194 | * @return User[] |
| 195 | 195 | */ |
| 196 | - private function getFailedBureaucrats( array $pages ) : array { |
|
| 197 | - $ret = []; |
|
| 196 | + private function getFailedBureaucrats ( array $pages ) : array { |
|
| 197 | + $ret = [ ]; |
|
| 198 | 198 | foreach ( $pages as $page ) { |
| 199 | 199 | $user = $this->getUser( $page->getUserName() ); |
| 200 | 200 | if ( $user->inGroup( 'bureaucrat' ) ) { |
| 201 | - $ret[] = $user; |
|
| 201 | + $ret[ ] = $user; |
|
| 202 | 202 | } |
| 203 | 203 | } |
| 204 | 204 | return $ret; |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task; |
| 4 | 4 | |
@@ -14,13 +14,13 @@ discard block |
||
| 14 | 14 | * |
| 15 | 15 | * @return string[] |
| 16 | 16 | */ |
| 17 | - abstract protected function getSubtasksMap() : array; |
|
| 17 | + abstract protected function getSubtasksMap () : array; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @param string $subtask Defined in self::SUBTASKS_MAP |
| 21 | 21 | * @return \BotRiconferme\TaskHelper\TaskResult |
| 22 | 22 | */ |
| 23 | - protected function runSubtask( string $subtask ) : TaskResult { |
|
| 23 | + protected function runSubtask ( string $subtask ) : TaskResult { |
|
| 24 | 24 | $map = $this->getSubtasksMap(); |
| 25 | 25 | if ( !isset( $map[ $subtask ] ) ) { |
| 26 | 26 | throw new \InvalidArgumentException( "'$subtask' is not a valid task." ); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * @inheritDoc |
| 35 | 35 | */ |
| 36 | - final public function getOperationName(): string { |
|
| 36 | + final public function getOperationName (): string { |
|
| 37 | 37 | return 'task'; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @param string $class |
| 44 | 44 | * @return Subtask |
| 45 | 45 | */ |
| 46 | - private function getSubtaskInstance( string $class ) : Subtask { |
|
| 46 | + private function getSubtaskInstance ( string $class ) : Subtask { |
|
| 47 | 47 | /** @var Subtask $ret */ |
| 48 | 48 | $ret = new $class( |
| 49 | 49 | $this->getLogger(), |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\TaskHelper; |
| 4 | 4 | |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * @param int $status One of the Task::STATUS_* constants |
| 22 | 22 | * @param string[] $errors |
| 23 | 23 | */ |
| 24 | - public function __construct( int $status, array $errors = [] ) { |
|
| 24 | + public function __construct ( int $status, array $errors = [ ] ) { |
|
| 25 | 25 | $this->status = $status; |
| 26 | 26 | $this->errors = $errors; |
| 27 | 27 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | /** |
| 30 | 30 | * @return int |
| 31 | 31 | */ |
| 32 | - public function getStatus() : int { |
|
| 32 | + public function getStatus () : int { |
|
| 33 | 33 | return $this->status; |
| 34 | 34 | } |
| 35 | 35 | |
@@ -37,14 +37,14 @@ discard block |
||
| 37 | 37 | * @return string[] |
| 38 | 38 | * @suppress PhanUnreferencedPublicMethod |
| 39 | 39 | */ |
| 40 | - public function getErrors() : array { |
|
| 40 | + public function getErrors () : array { |
|
| 41 | 41 | return $this->errors; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
| 45 | 45 | * @param TaskResult $that |
| 46 | 46 | */ |
| 47 | - public function merge( TaskResult $that ) : void { |
|
| 47 | + public function merge ( TaskResult $that ) : void { |
|
| 48 | 48 | $this->status |= $that->status; |
| 49 | 49 | $this->errors = array_merge( $this->errors, $that->errors ); |
| 50 | 50 | } |
@@ -52,15 +52,15 @@ discard block |
||
| 52 | 52 | /** |
| 53 | 53 | * @return string |
| 54 | 54 | */ |
| 55 | - public function __toString() { |
|
| 55 | + public function __toString () { |
|
| 56 | 56 | if ( $this->isOK() ) { |
| 57 | 57 | $stat = 'OK'; |
| 58 | 58 | $errs = "\tNo errors."; |
| 59 | 59 | } else { |
| 60 | 60 | $stat = 'ERROR'; |
| 61 | - $formattedErrs = []; |
|
| 61 | + $formattedErrs = [ ]; |
|
| 62 | 62 | foreach ( $this->errors as $err ) { |
| 63 | - $formattedErrs[] = "\t - $err"; |
|
| 63 | + $formattedErrs[ ] = "\t - $err"; |
|
| 64 | 64 | } |
| 65 | 65 | $errs = implode( "\n", $formattedErrs ); |
| 66 | 66 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | * |
| 73 | 73 | * @return bool |
| 74 | 74 | */ |
| 75 | - public function isOK() : bool { |
|
| 75 | + public function isOK () : bool { |
|
| 76 | 76 | return ( $this->status | self::STATUS_GOOD ) === self::STATUS_GOOD; |
| 77 | 77 | } |
| 78 | 78 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\TaskHelper; |
| 4 | 4 | |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | /** @var User[]|null */ |
| 16 | 16 | private $processUsers; |
| 17 | 17 | /** @var PageRiconferma[] */ |
| 18 | - private $createdPages = []; |
|
| 18 | + private $createdPages = [ ]; |
|
| 19 | 19 | /** @var PageRiconferma[]|null */ |
| 20 | 20 | private $openPages; |
| 21 | 21 | /** @var PageRiconferma[]|null */ |
@@ -26,9 +26,9 @@ discard block |
||
| 26 | 26 | * |
| 27 | 27 | * @return User[] |
| 28 | 28 | */ |
| 29 | - public function getUsersToProcess() : array { |
|
| 29 | + public function getUsersToProcess () : array { |
|
| 30 | 30 | if ( $this->processUsers === null ) { |
| 31 | - $this->processUsers = []; |
|
| 31 | + $this->processUsers = [ ]; |
|
| 32 | 32 | foreach ( $this->getBotList()->getAdminsList() as $name => $userInfo ) { |
| 33 | 33 | if ( $this->shouldAddUser( $userInfo ) ) { |
| 34 | 34 | $this->processUsers[ $name ] = new User( $userInfo, $this->getWiki() ); |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | * @param UserInfo $ui |
| 46 | 46 | * @return bool |
| 47 | 47 | */ |
| 48 | - private function shouldAddUser( UserInfo $ui ) : bool { |
|
| 48 | + private function shouldAddUser ( UserInfo $ui ) : bool { |
|
| 49 | 49 | $timestamp = $this->getBotList()->getOverrideTimestamp( $ui ); |
| 50 | 50 | $override = $timestamp !== null; |
| 51 | 51 | |
@@ -63,9 +63,9 @@ discard block |
||
| 63 | 63 | * |
| 64 | 64 | * @return PageRiconferma[] |
| 65 | 65 | */ |
| 66 | - public function getOpenPages() : array { |
|
| 66 | + public function getOpenPages () : array { |
|
| 67 | 67 | if ( $this->openPages === null ) { |
| 68 | - $this->openPages = []; |
|
| 68 | + $this->openPages = [ ]; |
|
| 69 | 69 | $mainTitle = $this->getOpt( 'main-page-title' ); |
| 70 | 70 | $params = [ |
| 71 | 71 | 'action' => 'query', |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | $pages = $this->getRequestFactory()->newFromParams( $params )->execute()->query->pages; |
| 80 | 80 | foreach ( reset( $pages )->templates as $page ) { |
| 81 | 81 | if ( preg_match( "!$titleReg/[^/]+/\d!", $page->title ) ) { |
| 82 | - $this->openPages[] = new PageRiconferma( $page->title, $this->getWiki() ); |
|
| 82 | + $this->openPages[ ] = new PageRiconferma( $page->title, $this->getWiki() ); |
|
| 83 | 83 | } |
| 84 | 84 | } |
| 85 | 85 | } |
@@ -92,12 +92,12 @@ discard block |
||
| 92 | 92 | * |
| 93 | 93 | * @return PageRiconferma[] |
| 94 | 94 | */ |
| 95 | - public function getPagesToClose() : array { |
|
| 95 | + public function getPagesToClose () : array { |
|
| 96 | 96 | if ( $this->pagesToClose === null ) { |
| 97 | - $this->pagesToClose = []; |
|
| 97 | + $this->pagesToClose = [ ]; |
|
| 98 | 98 | foreach ( $this->getOpenPages() as $page ) { |
| 99 | 99 | if ( time() > $page->getEndTimestamp() ) { |
| 100 | - $this->pagesToClose[] = $page; |
|
| 100 | + $this->pagesToClose[ ] = $page; |
|
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | 103 | } |
@@ -109,21 +109,21 @@ discard block |
||
| 109 | 109 | * |
| 110 | 110 | * @param string $name |
| 111 | 111 | */ |
| 112 | - public function removeUser( string $name ) : void { |
|
| 112 | + public function removeUser ( string $name ) : void { |
|
| 113 | 113 | unset( $this->processUsers[ $name ] ); |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | 117 | * @return PageRiconferma[] |
| 118 | 118 | */ |
| 119 | - public function getCreatedPages() : array { |
|
| 119 | + public function getCreatedPages () : array { |
|
| 120 | 120 | return $this->createdPages; |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
| 124 | 124 | * @param PageRiconferma $page |
| 125 | 125 | */ |
| 126 | - public function addCreatedPage( PageRiconferma $page ) : void { |
|
| 127 | - $this->createdPages[] = $page; |
|
| 126 | + public function addCreatedPage ( PageRiconferma $page ) : void { |
|
| 127 | + $this->createdPages[ ] = $page; |
|
| 128 | 128 | } |
| 129 | 129 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @param array $args |
| 32 | 32 | * @return self |
| 33 | 33 | */ |
| 34 | - public function params( array $args ) : self { |
|
| 34 | + public function params ( array $args ) : self { |
|
| 35 | 35 | $this->value = strtr( $this->value, $args ); |
| 36 | 36 | return $this; |
| 37 | 37 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | /** |
| 40 | 40 | * @return string |
| 41 | 41 | */ |
| 42 | - public function text() : string { |
|
| 42 | + public function text () : string { |
|
| 43 | 43 | $this->parsePlurals(); |
| 44 | 44 | return $this->value; |
| 45 | 45 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | /** |
| 48 | 48 | * Replace {{$plur|<amount>|sing|plur}} |
| 49 | 49 | */ |
| 50 | - protected function parsePlurals() : void { |
|
| 50 | + protected function parsePlurals () : void { |
|
| 51 | 51 | $reg = '!\{\{\$plur\|(?P<amount>\d+)\|(?P<sing>[^}|]+)\|(?P<plur>[^|}]+)}}!'; |
| 52 | 52 | |
| 53 | 53 | if ( preg_match( $reg, $this->value ) === 0 ) { |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $this->value = preg_replace_callback( |
| 57 | 57 | $reg, |
| 58 | 58 | static function ( $matches ) { |
| 59 | - return (int)$matches['amount'] > 1 ? trim( $matches['plur'] ) : trim( $matches['sing'] ); |
|
| 59 | + return (int)$matches[ 'amount' ] > 1 ? trim( $matches[ 'plur' ] ) : trim( $matches[ 'sing' ] ); |
|
| 60 | 60 | }, |
| 61 | 61 | $this->value |
| 62 | 62 | ); |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param string $timeString Full format, e.g. "15 aprile 2019 18:27" |
| 69 | 69 | * @return int |
| 70 | 70 | */ |
| 71 | - public static function getTimestampFromLocalTime( string $timeString ) : int { |
|
| 71 | + public static function getTimestampFromLocalTime ( string $timeString ) : int { |
|
| 72 | 72 | $englishTime = str_ireplace( |
| 73 | 73 | array_values( self::MONTHS ), |
| 74 | 74 | array_keys( self::MONTHS ), |
@@ -86,12 +86,12 @@ discard block |
||
| 86 | 86 | * @param string $emptyText |
| 87 | 87 | * @return string |
| 88 | 88 | */ |
| 89 | - public static function commaList( array $data, string $emptyText = 'nessuno' ) : string { |
|
| 89 | + public static function commaList ( array $data, string $emptyText = 'nessuno' ) : string { |
|
| 90 | 90 | if ( count( $data ) > 1 ) { |
| 91 | 91 | $last = array_pop( $data ); |
| 92 | 92 | $ret = implode( ', ', $data ) . " e $last"; |
| 93 | 93 | } elseif ( $data ) { |
| 94 | - $ret = (string)$data[0]; |
|
| 94 | + $ret = (string)$data[ 0 ]; |
|
| 95 | 95 | } else { |
| 96 | 96 | $ret = $emptyText; |
| 97 | 97 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | return $ret; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - public function __toString() { |
|
| 102 | + public function __toString () { |
|
| 103 | 103 | return $this->text(); |
| 104 | 104 | } |
| 105 | 105 | } |
@@ -1,4 +1,4 @@ |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | /** |
| 3 | 3 | * Entry point for the bot, called by CLI |
| 4 | 4 | */ |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task; |
| 4 | 4 | |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | abstract class TaskBase extends ContextSource { |
| 17 | 17 | /** @var string[] */ |
| 18 | - protected $errors = []; |
|
| 18 | + protected $errors = [ ]; |
|
| 19 | 19 | /** @var TaskDataProvider */ |
| 20 | 20 | protected $dataProvider; |
| 21 | 21 | |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * @param MessageProvider $mp |
| 29 | 29 | * @param PageBotList $pbl |
| 30 | 30 | */ |
| 31 | - final public function __construct( |
|
| 31 | + final public function __construct ( |
|
| 32 | 32 | LoggerInterface $logger, |
| 33 | 33 | WikiGroup $wikiGroup, |
| 34 | 34 | TaskDataProvider $dataProvider, |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * |
| 45 | 45 | * @return \BotRiconferme\TaskHelper\TaskResult |
| 46 | 46 | */ |
| 47 | - final public function run() : TaskResult { |
|
| 47 | + final public function run () : TaskResult { |
|
| 48 | 48 | $class = ( new \ReflectionClass( $this ) )->getShortName(); |
| 49 | 49 | $opName = $this->getOperationName(); |
| 50 | 50 | $this->getLogger()->info( "Starting $opName $class" ); |
@@ -75,19 +75,19 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @return int One of the STATUS_* constants |
| 77 | 77 | */ |
| 78 | - abstract protected function runInternal() : int; |
|
| 78 | + abstract protected function runInternal () : int; |
|
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | 81 | * How this operation should be called in logs |
| 82 | 82 | * |
| 83 | 83 | * @return string |
| 84 | 84 | */ |
| 85 | - abstract public function getOperationName() : string; |
|
| 85 | + abstract public function getOperationName () : string; |
|
| 86 | 86 | |
| 87 | 87 | /** |
| 88 | 88 | * @return TaskDataProvider |
| 89 | 89 | */ |
| 90 | - protected function getDataProvider() : TaskDataProvider { |
|
| 90 | + protected function getDataProvider () : TaskDataProvider { |
|
| 91 | 91 | return $this->dataProvider; |
| 92 | 92 | } |
| 93 | 93 | } |