Skip to content

Commit

Permalink
[TASK] Correct comments in StandardVariableProvider (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
s2b authored Oct 19, 2023
1 parent dc65628 commit 34249ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Core/Variables/StandardVariableProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function add($identifier, $value)
}

/**
* Get a variable from the context. Throws exception if variable is not found in context.
* Get a variable from the context.
*
* If "_all" is given as identifier, all variables are returned in an array,
* if one of the other reserved variables are given, their appropriate value
Expand Down Expand Up @@ -166,7 +166,7 @@ public function getByPath($path)
}

/**
* Remove a variable from context. Throws exception if variable is not found in context.
* Remove a variable from context.
*
* @param string $identifier The identifier to remove
* @api
Expand Down Expand Up @@ -222,7 +222,7 @@ public function offsetSet($identifier, $value)
}

/**
* Remove a variable from context. Throws exception if variable is not found in context.
* Remove a variable from context.
*
* @param string $identifier The identifier to remove
*/
Expand All @@ -243,7 +243,7 @@ public function offsetExists($identifier)
}

/**
* Get a variable from the context. Throws exception if variable is not found in context.
* Get a variable from the context.
*
* @param string $identifier
* @return mixed The variable identified by $identifier
Expand Down

0 comments on commit 34249ba

Please sign in to comment.