Skip to content

Commit ba9bec6

Browse files
committed
Merge remote-tracking branch 'origin/master'
* origin/master: Apply fixes from StyleCI Update shivammathur/setup-php action to v2.25.5
2 parents 555730f + 181ea90 commit ba9bec6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v3
2929

3030
- name: Setup PHP
31-
uses: shivammathur/setup-php@2.24.0
31+
uses: shivammathur/setup-php@2.25.5
3232
with:
3333
php-version: ${{ matrix.php }}
3434
coverage: xdebug

src/voku/SimplePhpParser/Model/PHPClass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function readObjectFromPhpNode($node, $dummy = null): self
6868
if (!empty($node->extends)) {
6969
$classExtended = '';
7070
foreach ($node->extends->parts as $part) {
71-
$classExtended .= "\\" . $part;
71+
$classExtended .= '\\' . $part;
7272
}
7373
/** @noinspection PhpSillyAssignmentInspection - hack for phpstan */
7474
/** @var class-string $classExtended */
@@ -109,7 +109,7 @@ public function readObjectFromPhpNode($node, $dummy = null): self
109109
foreach ($node->implements as $interfaceObject) {
110110
$interfaceFQN = '';
111111
foreach ($interfaceObject->parts as $interface) {
112-
$interfaceFQN .= "\\" . $interface;
112+
$interfaceFQN .= '\\' . $interface;
113113
}
114114
$interfaceFQN = \ltrim($interfaceFQN, '\\');
115115
/** @noinspection PhpSillyAssignmentInspection - hack for phpstan */

0 commit comments

Comments
 (0)