Skip to content
This repository has been archived by the owner on Jul 1, 2023. It is now read-only.

Remove in php8 deprecated curly braces access to string #158

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static function parseArguments(array $arguments)
}

foreach ($arguments as $argument) {
if ($argument{0} !== '-') {
if (strpos($argument, '-') !== 0) {
$settings->paths[] = $argument;
} else {
switch ($argument) {
Expand Down