Skip to content

Commit

Permalink
[#272] Attempt to solve CI error
Browse files Browse the repository at this point in the history
[#272] Attempt to solve CI error

[#272] Attempt to solve CI error
  • Loading branch information
Fragonite committed Sep 6, 2023
1 parent c647a59 commit 00984f2
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions classes/script_metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,13 +205,12 @@ public static function get_redactable_param_names(): array {
}

/**
* Gets the name of the script.
* Parameters are share the names of globals as a hint to the caller.
* @param ?string $me
* @param ?string $script
* Gets the name of the script. Parameters share the names of globals as a hint to the caller.
* @param string|null $me
* @param string|null $script
* @return string the request path for this profile.
*/
public static function get_normalised_relative_script_path(?string $me, ?string $script): string {
public static function get_normalised_relative_script_path($me, $script): string {
if (isset($me)) {
$scriptpath = $me;
} else if (isset($script)) {
Expand Down

0 comments on commit 00984f2

Please sign in to comment.