You are here

public function NullDumper::getProxyCode in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\NullDumper::getProxyCode()

Generates the code for the lazy proxy.

Parameters

Definition $definition:

Return value

string

Overrides DumperInterface::getProxyCode

File

vendor/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php, line 42

Class

NullDumper
Null dumper, negates any proxy code generation for any given service definition.

Namespace

Symfony\Component\DependencyInjection\LazyProxy\PhpDumper

Code

public function getProxyCode(Definition $definition) {
  return '';
}