mhawksey / wp-evidence-hub

OER Research Hub - WordPress plugin
6 stars 1 forks source link

Tighten protected/public/const in shortcode PHP [LACE] #24

Closed nfreear closed 9 years ago

nfreear commented 10 years ago

Instead of:

<?php
class Evidence_Hub_Shortcode_Hypothesis_Sankey extends Evidence_Hub_Shortcode {

    public $shortcode = 'evidence_summary';
//...
    function content() {
//...

We do this:

<?php
class Evidence_Hub_Shortcode_Hypothesis_Sankey extends Evidence_Hub_Shortcode {

    const SHORTCODE = 'hypothesis_sankey';
//...
    protected function content() {
//...
nfreear commented 9 years ago

Complete, I think!