Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / migrate_upgrade / tests / src / Unit / MigrateUpgradeDrushRunnerTest.php
index 86e906fb29e220f38a25bd44e06a6eba94874007..518bacc2e6e833938acebb1570049f7b53b6bb99 100644 (file)
@@ -159,14 +159,16 @@ if (!function_exists('drush_get_option')) {
    * Override for called function.
    *
    * @param mixed $option
-   *   An option.
+   *   The name of the option to get
    * @param mixed $default
-   *   The default.
+   *   Optional. The value to return if the option has not been set
+   * @param mixed $context
+   *   Optional. The context to check for the option. If this is set, only this context will be searched.
    *
    * @return mixed
    *   The default, for this override.
    */
-  function drush_get_option($option, $default) {
+  function drush_get_option($option, $default = NULL, $context = NULL) {
     return $default;
   }