gimler
Repos
190
Followers
82
Following
95

Events

opened issue
Radio/checkbox custom renderer

What problem does this feature solve?

It would be nice to customize the rendering of a checkbox or radio. So that i can create image buttons

example https://codepen.io/barisgurenc/pen/KLVNoR

What does the proposed API look like?

i did not have a proposed api look

Created at 3 weeks ago
bug: add missing getter for sonar vars

Added missing getter methods for sonarLogin and sonarPassword

Fix #90 #73 #98

Created at 1 month ago
gimler create branch bug/sonar_login_var
Created at 1 month ago

bug: add missing getter for sonar vars

Created at 1 month ago
java.io.IOException: Error while accessing rate limit API

Any workaround?

Created at 1 month ago
Whats the state of this project?

any update?

Created at 2 months ago
issue comment
DateTime::setTimezone produce different results with 7.4 and 8.0

@damianwadley with UTC+1 i get Unknown or bad timezone (UTC+1) with BST i did not get a exception

docker run --rm -it php:8.0.27-cli php -r "var_dump((new DateTime())->setTimezone(new \DateTimeZone('UTC+1')));"

Fatal error: Uncaught Exception: DateTimeZone::__construct(): Unknown or bad timezone (UTC+1) in Command line code:1
Stack trace:
#0 Command line code(1): DateTimeZone->__construct('UTC+1')
#1 {main}
  thrown in Command line code on line 1

Same result with php 8.2.1

So when BST is not supported it should also return the exception.

Created at 2 months ago
opened issue
DateTime::setTimezone produce different results with 7.4 and 8.0

Description

The following code produce different results

PHP 8.0.27

docker run --rm -it php:8.0.27-cli php -r "var_dump((new DateTime())->setTimezone(new \DateTimeZone('BST')));"
object(DateTime)#1 (3) {
  ["date"]=>
  string(26) "2023-01-11 14:11:28.643248"
  ["timezone_type"]=>
  int(2)
  ["timezone"]=>
  string(3) "BST"
}

PHP 7.4.

docker run --rm -it php:7.4.33-cli php -r "var_dump((new DateTime())->setTimezone(new \DateTimeZone('BST')));"
object(DateTime)#1 (3) {
  ["date"]=>
  string(26) "2023-01-11 13:11:28.643248"
  ["timezone_type"]=>
  int(2)
  ["timezone"]=>
  string(3) "BST"
}

PHP Version

8.0.27

Operating System

No response

Created at 2 months ago