m-o-p / labsystem

The labsystem eLearning system for creating and managing hands-on courses.
GNU General Public License v3.0
15 stars 9 forks source link

Fix PHP Docstrings #101

Open chris246 opened 5 years ago

chris246 commented 5 years ago

The Docstrings are (partially) missing the variable type: Is

/**
  * Adds the given key value pair to the internal list of Url parameters;
  * these parameters are added by default when using link2 (unless overwritten
  * with a different set of $base_parameters)
  * @param $key    The key to be added.
  * @param $value  The corresponding value
  */

Should be

/**
  * Adds the given key value pair to the internal list of Url parameters;
  * these parameters are added by default when using link2 (unless overwritten
  * with a different set of $base_parameters)
  * @param string $key    The key to be added.
  * @param string $value  The corresponding value
  */