Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused imports; Use str_starts_with() function #1681

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

janschoenherr
Copy link
Contributor

@janschoenherr janschoenherr commented Dec 2, 2024

Just a bit of code cleanup.

EDITED by hansmorb:

str_starts_with is polyfilled by WP since 5.9

Copy link

codecov bot commented Dec 2, 2024

Codecov Report

Attention: Patch coverage is 0% with 10 lines in your changes missing coverage. Please review.

Project coverage is 50.25%. Comparing base (1cd0154) to head (7bdad35).
Report is 27 commits behind head on master.

Files with missing lines Patch % Lines
src/Wordpress/CustomPostType/Booking.php 0.00% 2 Missing ⚠️
src/Wordpress/CustomPostType/Restriction.php 0.00% 2 Missing ⚠️
src/Wordpress/CustomPostType/Timeframe.php 0.00% 2 Missing ⚠️
src/Wordpress/CustomPostType/Item.php 0.00% 1 Missing ⚠️
src/Wordpress/CustomPostType/Location.php 0.00% 1 Missing ⚠️
src/Wordpress/CustomPostType/Map.php 0.00% 1 Missing ⚠️
src/Wordpress/Options/OptionsTab.php 0.00% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##             master    #1681      +/-   ##
============================================
- Coverage     50.31%   50.25%   -0.07%     
- Complexity     2722     2726       +4     
============================================
  Files            99       99              
  Lines         11316    11322       +6     
============================================
- Hits           5694     5690       -4     
- Misses         5622     5632      +10     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@hansmorb hansmorb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hier meine Änderungsvorschläge. Ich würde mit dem mergen trotzdem gerne auf #1413 warten.

@@ -717,11 +715,11 @@ public function registerMetabox() {
protected function getCustomFields() {
// We need static types, because german month names dont't work for datepicker
$dateFormat = 'd/m/Y';
if ( strpos( get_locale(), 'de_' ) !== false ) {
if ( str_starts_with( get_locale(), 'de_' ) ) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Das ist gedoppelter Code. Lässt sich das irgendwie sinnvoll auslagern?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ich persönlich würde das nicht auslagern. Ist eine sehr einfache Operation und taucht auch nur 4 mal im Code auf. Bzw. 8 mal mit den Englischen Vorkommen.

@@ -293,6 +293,6 @@ public function registerMetabox() {
foreach ($cmb->meta_box['fields'] as $metabox_field) {
$metabox_fields[$metabox_field['id']] = $metabox_field['name'];
}
Settings::updateOption('commonsbooking_settings_metaboxfields', $this->getPostType(), $metabox_fields);
Settings::updateOption('commonsbooking_settings_metaboxfields', static::getPostType(), $metabox_fields);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Das wird nicht aus einem statischen Kontext aufgerufen, warum dann nicht this verwenden?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So wie ich late static binding in php verstehe, wäre das nur relevant wenn es abgeleitete Klassen von Item gibt, welchen wir erlauben wollen registerMetabox mit ihrer eigenen getPostType Implementierung aufzurufen. Das ist hier aber nicht der Fall, ggf. war das ein false positive von phpstan für @janschoenherr

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also bestimmt hätten wir das eindeutiger definieren können, aber mit $this wird garantiert, dass die Methode getPostType z.b. auch mit einer nicht-statischen Methode in der aktuellen Klasse überschrieben werden kann. Zumindest habe ich das so verstanden. Wir brauchen das vielleicht nicht unbedingt, das verhindert aber vielleicht in Zukunft schwer nachvollziehbare Fehler.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bei mir ist das eine Warnung in phpstorm. Ich finde es persönlich eher verwirrend, wenn statische Methoden nicht statisch aufgerufen werden. Als Alternative könnte man auch $this::getPostType() schreiben.

Ich kann das aber auch gern wieder zurück ändern.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hansmorb das von dir beschriebene Verhalten funktioniert auch mit static::. Die bisherigen Aufrufe der statischen Methode CustomPostType::getPostType geschehen auch auf statische Art und Weise.

Daher wäre ich doch auch für diese Änderung, hin zu dem static-Aufruf.

if ( $cb_map_settings->get_option( 'booking_page_link_replacement' ) ) {

if ( MapSettings::get_option( 'booking_page_link_replacement' ) ) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zurückstellen für #1413 bitte.

@@ -404,11 +404,11 @@ public function registerMetabox() {
protected function getCustomFields(): array {
// We need static types, because german month names dont't work for datepicker
$dateFormat = "d/m/Y";
if ( strpos( get_locale(), 'de_' ) !== false ) {
if ( str_starts_with( get_locale(), 'de_' ) ) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gleiche Codedopplung, s.o.

@@ -466,11 +465,11 @@ public function registerMetabox() {
protected function getCustomFields() {
// We need static types, because german month names dont't work for datepicker
$dateFormat = "d/m/Y";
if ( strpos( get_locale(), 'de_' ) !== false ) {
if ( str_starts_with( get_locale(), 'de_' ) ) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s.o.

templates/timeframe-withlocation.php Outdated Show resolved Hide resolved
@janschoenherr janschoenherr force-pushed the patch-3 branch 2 times, most recently from dfd2c08 to bd2f85d Compare December 20, 2024 09:55
Use `str_starts_with()` function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants