Skip to content

Commit 3d8d7df

Browse files
committed
clean-up code comments
1 parent 97863e0 commit 3d8d7df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/DocBlock/Tags/PropertyRead.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static function create(
6868
array_unshift($parts, $firstPart);
6969
}
7070

71-
// if the next item starts with a $ or ...$ it must be the variable name
71+
// if the next item starts with a $ it must be the variable name
7272
if (isset($parts[0]) && strpos($parts[0], '$') === 0) {
7373
$variableName = array_shift($parts);
7474
if ($type) {

src/DocBlock/Tags/PropertyWrite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static function create(
6868
array_unshift($parts, $firstPart);
6969
}
7070

71-
// if the next item starts with a $ or ...$ it must be the variable name
71+
// if the next item starts with a $ it must be the variable name
7272
if (isset($parts[0]) && strpos($parts[0], '$') === 0) {
7373
$variableName = array_shift($parts);
7474
if ($type) {

src/DocBlock/Tags/Var_.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public static function create(
6969
array_unshift($parts, $firstPart);
7070
}
7171

72-
// if the next item starts with a $ or ...$ it must be the variable name
72+
// if the next item starts with a $ it must be the variable name
7373
if (isset($parts[0]) && strpos($parts[0], '$') === 0) {
7474
$variableName = array_shift($parts);
7575
if ($type) {

0 commit comments

Comments
 (0)