Skip to content

Commit e648416

Browse files
committed
CS fixes
1 parent 004d6fd commit e648416

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Types/ContextFactory.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ private function createFromReflectionClass(ReflectionClass $class) : Context
131131
/**
132132
* Build a Context for a namespace in the provided file contents.
133133
*
134-
* @see Context for more information on Contexts.
135-
*
136-
* @param string $namespace It does not matter if a `\` precedes the namespace name,
134+
* @param string $namespace It does not matter if a `\` precedes the namespace name,
137135
* this method first normalizes.
138136
* @param string $fileContents The file's contents to retrieve the aliases from with the given namespace.
137+
* @see Context for more information on Contexts.
138+
*
139139
*/
140140
public function createForNamespace(string $namespace, string $fileContents) : Context
141141
{
@@ -260,7 +260,7 @@ private function extractUseStatements(ArrayIterator $tokens) : array
260260
switch ($tokenId) {
261261
case T_STRING:
262262
case T_NS_SEPARATOR:
263-
$currentNs .= $tokenValue;
263+
$currentNs .= $tokenValue;
264264
$currentAlias = $tokenValue;
265265
break;
266266
case T_CURLY_OPEN:
@@ -296,7 +296,7 @@ private function extractUseStatements(ArrayIterator $tokens) : array
296296
switch ($tokenId) {
297297
case T_STRING:
298298
case T_NS_SEPARATOR:
299-
$currentNs .= $tokenValue;
299+
$currentNs .= $tokenValue;
300300
$currentAlias = $tokenValue;
301301
break;
302302
case T_AS:

0 commit comments

Comments
 (0)