Make methods that use settings non-static #412
Labels
priority: low
The issue/PR is low priority—not many people are affected or there’s a workaround, etc.
type: enhancement
The issue is a request for an enhancement.
Userdeveloper storyAs discussed in #398 (comment)
We use a lot of static functions that are not 100% "static," IMO.
PHP spec
public static function get_enabled_events
usesself::get
public static function load_opt_out
usesself::get
public static function get_product_identifier
usesself::get
public static function get
uses theself::settings
but we set the
self::settings
in the instance constructor https://github.com/woocommerce/woocommerce-google-analytics-integration/blob/cdb60c08a9cb62f351f5d324472ad62b6eef7105/includes/class-wc-google-gtag-js.php#L47:L47So we could change
self::get( * )
to$this->get()
or even$this->settings[ * ]
(IMHO,get
just blurs the picture here w/o much benefit).Is your feature request related to a problem?
It's not a big problem. This is a singleton, so the line between class and instance is blurred anyway. However, the
static
could mislead developers by suggesting no instance needs to be created to use them, which is not true.How to reproduce the problem
Use
WC_Google_Gtag_JS::get
without creating the instance first.Describe the solution you'd like
settings
to be instance properysettings
directly or indirectly to be non-static
get
function, as currently it limits the data types to be used as settings tostring
which may be problematic in the futureDescribe alternatives you've considered
Do only 1-2 above.
Technical
Figma link
Acceptance criteria
Unknowns
settings
andget
in the WC Core classWC_Integration
Out of bounds/rabbit holes
Event tracking
The text was updated successfully, but these errors were encountered: