@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | $editInfo = new EditInfo(static::BOT_TALK_SUMMARY); |
| 64 | 64 | $success = $page->addToBottomOfThePage($addText, $editInfo); |
| 65 | 65 | |
| 66 | - return (bool)$success; |
|
| 66 | + return (bool) $success; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | throw new ConfigException('Pas de phrases disponibles pour TalkBot'); |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - return (string)trim($sentences[array_rand($sentences)]); |
|
| 134 | + return (string) trim($sentences[array_rand($sentences)]); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | |
| 24 | 24 | public function hasWarning(): bool |
| 25 | 25 | { |
| 26 | - return (bool)$this->warning; |
|
| 26 | + return (bool) $this->warning; |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | $this->xml = $xml; |
| 41 | 41 | |
| 42 | 42 | // skip multi-records |
| 43 | - $nbResults = (int)$xml->xpath('//srw:numberOfRecords[1]')[0] ?? 0; |
|
| 43 | + $nbResults = (int) $xml->xpath('//srw:numberOfRecords[1]')[0] ?? 0; |
|
| 44 | 44 | if (1 !== $nbResults) { |
| 45 | 45 | echo "BNF : $nbResults records (skip)\n"; |
| 46 | 46 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | $res = []; |
| 124 | 124 | foreach ($elements as $element) { |
| 125 | 125 | if (isset($element) && $element instanceof SimpleXMLElement) { |
| 126 | - $res[] = (string)$element; |
|
| 126 | + $res[] = (string) $element; |
|
| 127 | 127 | } |
| 128 | 128 | } |
| 129 | 129 | |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | { |
| 192 | 192 | $raw = $this->xpath2string('//mxc:datafield[@tag="215"]/mxc:subfield[@code="a"]'); |
| 193 | 193 | if (!empty($raw) && preg_match('#([0-9]{2,}) p\.#', $raw, $matches) > 0) { |
| 194 | - return (string)$matches[1]; |
|
| 194 | + return (string) $matches[1]; |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | return null; |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $data = $mapper->process($page->getData()); |
| 32 | 32 | |
| 33 | 33 | if (isset($data['consulté le'])) { |
| 34 | - $data['consulté le'] = '11-04-2020';// unit testing date... |
|
| 34 | + $data['consulté le'] = '11-04-2020'; // unit testing date... |
|
| 35 | 35 | } |
| 36 | 36 | $this::assertSame($expected, $data); |
| 37 | 37 | } |
@@ -194,7 +194,7 @@ |
||
| 194 | 194 | return null; |
| 195 | 195 | } |
| 196 | 196 | $str = str_replace([''',''', ''', "\n", " ", "|", "é"], ["'","'", "'", '', ' ', '/', |
| 197 | - "é"], $str); |
|
| 197 | + "é"], $str); |
|
| 198 | 198 | |
| 199 | 199 | return html_entity_decode($str); |
| 200 | 200 | } |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | $page .= '–'.$meta['citation_lastpage']; |
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - return (string)$page; |
|
| 184 | + return (string) $page; |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | return null; |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | if ($str === null) { |
| 194 | 194 | return null; |
| 195 | 195 | } |
| 196 | - $str = str_replace([''',''', ''', "\n", " ", "|", "é"], ["'","'", "'", '', ' ', '/', |
|
| 196 | + $str = str_replace([''', ''', ''', "\n", " ", "|", "é"], ["'", "'", "'", '', ' ', '/', |
|
| 197 | 197 | "é"], $str); |
| 198 | 198 | |
| 199 | 199 | return html_entity_decode($str); |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | |
| 17 | 17 | class AbstractWikiTemplateTest extends TestCase |
| 18 | 18 | { |
| 19 | - public function testIsValidForEdit(){ |
|
| 19 | + public function testIsValidForEdit() { |
|
| 20 | 20 | $article = WikiTemplateFactory::create('article'); |
| 21 | 21 | $article->hydrate( |
| 22 | 22 | [ |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | return null; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - return (string)$response->getBody()->getContents() ?? ''; |
|
| 68 | + return (string) $response->getBody()->getContents() ?? ''; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | public static function isWebURL(string $url): bool |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | $this->setUpInConstructor(); |
| 67 | 67 | |
| 68 | - $this->run();//todo delete that and use (Worker)->run($duration) or process management |
|
| 68 | + $this->run(); //todo delete that and use (Worker)->run($duration) or process management |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | protected function setUpInConstructor(): void |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | new EditInfo($this->taskName, $this->minorFlag, $this->botFlag, $this->maxLag) |
| 190 | 190 | ); |
| 191 | 191 | dump($result); |
| 192 | - echo "Sleep ".(string)static::SLEEP_AFTER_EDITION."\n"; |
|
| 192 | + echo "Sleep ".(string) static::SLEEP_AFTER_EDITION."\n"; |
|
| 193 | 193 | sleep(static::SLEEP_AFTER_EDITION); |
| 194 | 194 | } |
| 195 | 195 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | { |
| 55 | 55 | $data = $this->getFileData(); |
| 56 | 56 | $this->lastDate = new DateTime($data['date'], new DateTimeZone(static::REBOOT_TIMEZONE)); |
| 57 | - $this->count = (int)$data['count']; |
|
| 57 | + $this->count = (int) $data['count']; |
|
| 58 | 58 | |
| 59 | 59 | // Today reboot date/time of the quota |
| 60 | 60 | $todayBoot = new DateTime(); |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | |
| 77 | 77 | try { |
| 78 | 78 | $json = file_get_contents(static::JSON_FILENAME); |
| 79 | - $array = (array)json_decode($json, true); |
|
| 79 | + $array = (array) json_decode($json, true); |
|
| 80 | 80 | } catch (Throwable $e) { |
| 81 | 81 | throw new ConfigException('Error on Google Quota file : reading or JSON malformed.'); |
| 82 | 82 | } |