Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Symfony/Component/Console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

7.1
---

* Add `ArgvInput::getRawTokens()`

7.0
---

Expand Down
10 changes: 10 additions & 0 deletions src/Symfony/Component/Console/Input/ArgvInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,16 @@ public function getParameterOption(string|array $values, string|bool|int|float|a
return $default;
}

/**
* Returns un-parsed and not validated tokens.
*
* @return list<string>
*/
public function getRawTokens(): array
{
return $this->tokens;
}

/**
* Returns a stringified representation of the args passed to the command.
*/
Expand Down