@anish.a you can continue from scratch, because due to some mistake, all my code is reverted :(.
Still working on this.
I am still working on this, will continue for another 24 hours.
Till Now -
I fixed most of the Errors mentioned above, and only a few are remaining, once I fix them tomorrow, and test the module, I will mark PR as ready for review.
ddev . phpstan analyze web/modules/contrib/quicktabs
I can take this, and start work on it.
@museumboy -
Temporary Fix -
Please do following changes and issue will resolve
In File /home/ide/project/docroot/sites/all/modules/contrib/date/date_views/includes/date_views_filter_handler_simple.inc
Replace
$element_input['value'] = $this->get_filter_value('value', !empty($element_input['value']) ? $element_input['value'] : '');
$element_input['min'] = $this->get_filter_value('min', !empty($element_input['min']) ? $element_input['min'] : '');
$element_input['max'] = $this->get_filter_value('max', !empty($element_input['max']) ? $element_input['max'] : '');
To
if(isset($element_input['value']))
$element_input['value'] = $this->get_filter_value('value', !empty($element_input['value']) ? $element_input['value'] : '');
if (isset($element_input['min']))
$element_input['min'] = $this->get_filter_value('min', !empty($element_input['min']) ? $element_input['min'] : '');
if (isset($element_input['max']))
$element_input['max'] = $this->get_filter_value('max', !empty($element_input['max']) ? $element_input['max'] : '');
I will create a Patch and share with you.
Please let me know if after this changes you are facing similar issue.
alexpott → credited rahul_ → .
I contributed to DrupalCamp Pune 2024. I volunteered as Floor Assistant and handled the responsibility of Floor Assistant, Welcome kit packaging, Speaker assistant. #dcp2024
#DrupalCampPune2024
@giordy - could you please review, might be this will helpfull.
https://acquia.my.site.com/s/article/CKEditor4-EOL-Transitioning-to-CKEd...
@giordy Are you using Drupal 11 + CKEditor4?
It is fixed after update Drush Launcher version 0.10.2
https://github.com/drush-ops/drush-launcher/issues/102
Thanks
we are already on latest drush
$ drush --version
Drush Launcher Version: 0.10.1
Deprecated: Use of "static" in callables is deprecated in phar:///usr/local/bin/drush/vendor/webmozart/assert/src/Assert.php on line 1973
Deprecated: Use of "static" in callables is deprecated in phar:///usr/local/bin/drush/vendor/webmozart/assert/src/Assert.php on line 1973
Drush Commandline Tool 12.4.3.0
Same error i am facing with below configration.
PHP 8.2
Drupal 10.2
Drush 8.4.12
~/project/docroot (main) $ drush uli
Deprecated: Use of "static" in callables is deprecated in phar:///usr/local/bin/drush/vendor/webmozart/assert/src/Assert.php on line 1973
Deprecated: Use of "static" in callables is deprecated in phar:///usr/local/bin/drush/vendor/webmozart/assert/src/Assert.php on line 1973
Drupal 10 is released, and phpcs is also supported in it.