File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 18
18
"symfony/dependency-injection" : " ^5.4|^6.0|^7.0" ,
19
19
"symfony/finder" : " ^5.4|^6.0|^7.0" ,
20
20
"symfony/http-kernel" : " ^5.4|^6.0|^7.0" ,
21
- "twig/twig" : " ^2.15.3|^3.4.3 " ,
21
+ "twig/twig" : " ^2.15.3|~3.8.0 " ,
22
22
"symfony/deprecation-contracts" : " ^2.0|^3.0"
23
23
},
24
24
"require-dev" : {
Original file line number Diff line number Diff line change @@ -27,9 +27,7 @@ final class StimulusHelper
27
27
public function __construct (?Environment $ twig )
28
28
{
29
29
// Twig needed just for its escaping mechanism
30
- $ this ->twig = $ twig ?? new Environment (new ArrayLoader (), [
31
- 'use_yield ' => true ,
32
- ]);
30
+ $ this ->twig = $ twig ?? new Environment (new ArrayLoader ());
33
31
}
34
32
35
33
public function createStimulusAttributes (): StimulusAttributes
Original file line number Diff line number Diff line change @@ -24,9 +24,7 @@ final class StimulusAttributesTest extends TestCase
24
24
25
25
protected function setUp (): void
26
26
{
27
- $ this ->stimulusAttributes = new StimulusAttributes (new Environment (new ArrayLoader (), [
28
- 'use_yield ' => true ,
29
- ]));
27
+ $ this ->stimulusAttributes = new StimulusAttributes (new Environment (new ArrayLoader ()));
30
28
}
31
29
32
30
public function testAddAction (): void
You can’t perform that action at this time.
0 commit comments