comparison vendor/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
15 15
16 /** 16 /**
17 * Null dumper, negates any proxy code generation for any given service definition. 17 * Null dumper, negates any proxy code generation for any given service definition.
18 * 18 *
19 * @author Marco Pivetta <ocramius@gmail.com> 19 * @author Marco Pivetta <ocramius@gmail.com>
20 *
21 * @final since version 3.3
20 */ 22 */
21 class NullDumper implements DumperInterface 23 class NullDumper implements DumperInterface
22 { 24 {
23 /** 25 /**
24 * {@inheritdoc} 26 * {@inheritdoc}
29 } 31 }
30 32
31 /** 33 /**
32 * {@inheritdoc} 34 * {@inheritdoc}
33 */ 35 */
34 public function getProxyFactoryCode(Definition $definition, $id) 36 public function getProxyFactoryCode(Definition $definition, $id, $factoryCode = null)
35 { 37 {
36 return ''; 38 return '';
37 } 39 }
38 40
39 /** 41 /**