Completed
Pull Request — master (#161)
by
unknown
62:55
created
src/UriTemplate.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -402,9 +402,9 @@
 block discarded – undo
402 402
         $parts = [];
403 403
         /** @var array{name:string, modifier:string, position:string} $variable */
404 404
         foreach ($expression['variables'] as $variable) {
405
-          if (isset($this->variables[$variable['name']])) {
405
+            if (isset($this->variables[$variable['name']])) {
406 406
             $parts[] = $this->expandVariable($variable, $expression['operator'], $joiner, $useQuery);
407
-          }
407
+            }
408 408
         }
409 409
 
410 410
         $nullFilter = static function ($value): bool {
Please login to merge, or discard this patch.