File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/Symfony/Component/DependencyInjection/Tests/Fixtures/php Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public function __construct()
31
31
'values ' => array (
32
32
0 => true ,
33
33
1 => false ,
34
- 2 => NULL ,
34
+ 2 => null ,
35
35
3 => 0 ,
36
36
4 => 1000.3 ,
37
37
5 => 'true ' ,
Original file line number Diff line number Diff line change @@ -268,8 +268,8 @@ protected function getMethodCall1Service()
268
268
$ this ->services ['method_call1 ' ] = $ instance = new \Bar \FooClass ();
269
269
270
270
$ instance ->setBar ($ this ->get ('foo ' ));
271
- $ instance ->setBar (NULL );
272
- $ instance ->setBar (($ this ->get ("foo " )->foo () . (($ this ->hasparameter ("foo " )) ? ($ this ->getParameter ("foo " )) : ("default " ))));
271
+ $ instance ->setBar (null );
272
+ $ instance ->setBar (($ this ->get ("foo " )->foo (). (($ this ->hasparameter ("foo " )) ? ($ this ->getParameter ("foo " )) : ("default " ))));
273
273
274
274
return $ instance ;
275
275
}
You can’t perform that action at this time.
0 commit comments