Skip to content

Commit f79e087

Browse files
committed
CS Fixes: lowercase null constants
1 parent c4a8041 commit f79e087

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services8.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct()
3131
'values' => array(
3232
0 => true,
3333
1 => false,
34-
2 => NULL,
34+
2 => null,
3535
3 => 0,
3636
4 => 1000.3,
3737
5 => 'true',

src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ protected function getMethodCall1Service()
268268
$this->services['method_call1'] = $instance = new \Bar\FooClass();
269269

270270
$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"))));
273273

274274
return $instance;
275275
}

0 commit comments

Comments
 (0)