Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit eed5ed6

Browse files
committed
Merge pull request #122 from alessandrofeitoza/patch-1
Closing parentheses of the attach method parameters
2 parents 6109c5b + 2841a1d commit eed5ed6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/book/php-renderer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ $stack = new Resolver\TemplatePathStack([
7272
$resolver
7373
->attach($map) // this will be consulted first, and is the fastest lookup
7474
->attach($stack) // filesystem-based lookup
75-
->attach(new Resolver\RelativeFallbackResolver($map) // allow short template names
76-
->attach(new Resolver\RelativeFallbackResolver($stack);
75+
->attach(new Resolver\RelativeFallbackResolver($map)) // allow short template names
76+
->attach(new Resolver\RelativeFallbackResolver($stack));
7777
```
7878

7979
You can also specify a specific priority value when registering resolvers, with

0 commit comments

Comments
 (0)