comparison vendor/symfony/validator/Context/ExecutionContextFactory.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
17 /** 17 /**
18 * Creates new {@link ExecutionContext} instances. 18 * Creates new {@link ExecutionContext} instances.
19 * 19 *
20 * @author Bernhard Schussek <bschussek@gmail.com> 20 * @author Bernhard Schussek <bschussek@gmail.com>
21 * 21 *
22 * @internal You should not instantiate or use this class. Code against 22 * @internal version 2.5. Code against ExecutionContextFactoryInterface instead.
23 * {@link ExecutionContextFactoryInterface} instead.
24 */ 23 */
25 class ExecutionContextFactory implements ExecutionContextFactoryInterface 24 class ExecutionContextFactory implements ExecutionContextFactoryInterface
26 { 25 {
27 /**
28 * @var TranslatorInterface
29 */
30 private $translator; 26 private $translator;
31
32 /**
33 * @var string|null
34 */
35 private $translationDomain; 27 private $translationDomain;
36 28
37 /** 29 /**
38 * Creates a new context factory. 30 * Creates a new context factory.
39 * 31 *