@@ -71,7 +71,7 @@ |
||
| 71 | 71 | $cursor[$key] = $value; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - $logEntry->id = (int) hexdec($cursor['i']); |
|
| 74 | + $logEntry->id = (int)hexdec($cursor['i']); |
|
| 75 | 75 | |
| 76 | 76 | $timeStamp = $entry['__REALTIME_TIMESTAMP']; |
| 77 | 77 | $logEntry->created = \DateTimeImmutable::createFromFormat( |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | public function toDatabaseArray() |
| 31 | 31 | { |
| 32 | 32 | return [ |
| 33 | - 'id' => (int) $this->id, |
|
| 33 | + 'id' => (int)$this->id, |
|
| 34 | 34 | 'email' => $this->email, |
| 35 | 35 | 'status' => $this->status, |
| 36 | 36 | 'created' => $this->created, |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function fromDatabaseArray(array $data) |
| 45 | 45 | { |
| 46 | - $this->id = (int) $data['id']; |
|
| 46 | + $this->id = (int)$data['id']; |
|
| 47 | 47 | $this->email = $data['email']; |
| 48 | 48 | $this->status = $data['status']; |
| 49 | 49 | $this->created = $data['created']; |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | |
| 57 | 57 | public function fromCsvArray(array $data) |
| 58 | 58 | { |
| 59 | - $this->identifier = (int) $data['Identifier']; |
|
| 59 | + $this->identifier = (int)$data['Identifier']; |
|
| 60 | 60 | $this->sourceString = $data['SourceString']; |
| 61 | 61 | $this->comment = $data['Comment']; |
| 62 | 62 | $this->de = $data['DE']; |
@@ -505,8 +505,8 @@ |
||
| 505 | 505 | } |
| 506 | 506 | |
| 507 | 507 | $coords = []; |
| 508 | - if ($this->getType() != 7 && $this->getType() != 8 && // quiz cache |
|
| 509 | - $this->hasAttribute(61) != true && // safari cache |
|
| 508 | + if ($this->getType() != 7 && $this->getType() != 8 && // quiz cache |
|
| 509 | + $this->hasAttribute(61) != true && // safari cache |
|
| 510 | 510 | $this->getStatus() != 5 // unpublished cache |
| 511 | 511 | ) { |
| 512 | 512 | $rsCoords = sql( |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | 'OC_COOKIE_NAME' => $opt['session']['cookiename'] . 'data', |
| 53 | 53 | 'VERSION_FILE' => __DIR__ . '/okapi/meta.php', |
| 54 | 54 | 'OCDE_HTML_PURIFIER_SETTINGS' |
| 55 | - => $opt['html_purifier'], |
|
| 55 | + => $opt['html_purifier'], |
|
| 56 | 56 | 'GITHUB_ACCESS_TOKEN' => $opt['okapi']['github_access_token'], |
| 57 | 57 | ]; |
| 58 | 58 | } |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -$GLOBALS['rootpath'] = __DIR__.'/../'; |
|
| 3 | +$GLOBALS['rootpath'] = __DIR__ . '/../'; |
|
| 4 | 4 | |
| 5 | 5 | require_once __DIR__ . '/../vendor/autoload.php'; |
| 6 | 6 | |
| 7 | -require_once __DIR__ .'/../vendor/opencaching/okapi/okapi/index.php'; |
|
| 7 | +require_once __DIR__ . '/../vendor/opencaching/okapi/okapi/index.php'; |
|
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | $config->set( |
| 64 | 64 | 'HTML.ForbiddenElements', |
| 65 | 65 | [ |
| 66 | - 'basefont', // workaround for HTMLPurifier bug, which allows this in the <body> |
|
| 66 | + 'basefont', // workaround for HTMLPurifier bug, which allows this in the <body> |
|
| 67 | 67 | ] |
| 68 | 68 | ); |
| 69 | 69 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | // add attributes |
| 99 | 99 | $def->addAttribute('a', 'rel', 'CDATA'); |
| 100 | 100 | $def->addAttribute('img', 'usemap', 'CDATA'); |
| 101 | - $def->addAttribute('map', 'name', 'CDATA'); // workaround for HTMLPurifer bug |
|
| 101 | + $def->addAttribute('map', 'name', 'CDATA'); // workaround for HTMLPurifer bug |
|
| 102 | 102 | |
| 103 | 103 | // create parent object with config |
| 104 | 104 | parent::__construct($config); |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | $process = new Process($cmd, $this->rootPath, null, null, 9600); |
| 46 | - $process->run(function ($type, $buffer) { |
|
| 46 | + $process->run(function($type, $buffer) { |
|
| 47 | 47 | echo $buffer; |
| 48 | 48 | }); |
| 49 | 49 | |
@@ -13,10 +13,10 @@ |
||
| 13 | 13 | $tpl->name = 'usertops'; |
| 14 | 14 | $tpl->menuitem = MNU_CACHES_USERTOPS; |
| 15 | 15 | |
| 16 | -$userId = (int) isset($_REQUEST['userid']) ? $_REQUEST['userid']: 0; |
|
| 16 | +$userId = (int)isset($_REQUEST['userid']) ? $_REQUEST['userid'] : 0; |
|
| 17 | 17 | $ocOnly = isset($_REQUEST['oconly']) && $_REQUEST['oconly']; |
| 18 | 18 | |
| 19 | -$sUsername = $connection->fetchColumn('SELECT `username` FROM `user` WHERE `user_id` = :userId',['userId' => $userId]); |
|
| 19 | +$sUsername = $connection->fetchColumn('SELECT `username` FROM `user` WHERE `user_id` = :userId', ['userId' => $userId]); |
|
| 20 | 20 | if ($sUsername == null) { |
| 21 | 21 | $tpl->error(ERROR_USER_NOT_EXISTS); |
| 22 | 22 | } |