platform/api/symfony/Component/HttpKernel/CacheWarmer/CacheWarmerAggregate.yaml

56 lines
1.4 KiB
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
name: CacheWarmerAggregate
class_comment: '# * Aggregates several cache warmers into a single one.
# *
# * @author Fabien Potencier <fabien@symfony.com>
# *
# * @final'
dependencies:
- name: SymfonyStyle
type: class
source: Symfony\Component\Console\Style\SymfonyStyle
properties: []
methods:
- name: __construct
visibility: public
parameters:
- name: warmers
default: '[]'
- name: debug
default: 'false'
- name: deprecationLogsFilepath
default: 'null'
comment: "# * Aggregates several cache warmers into a single one.\n# *\n# * @author\
\ Fabien Potencier <fabien@symfony.com>\n# *\n# * @final\n# */\n# class CacheWarmerAggregate\
\ implements CacheWarmerInterface\n# {\n# private bool $optionalsEnabled = false;\n\
# private bool $onlyOptionalsEnabled = false;\n# \n# /**\n# * @param iterable<mixed,\
\ CacheWarmerInterface> $warmers"
- name: enableOptionalWarmers
visibility: public
parameters: []
comment: null
- name: enableOnlyOptionalWarmers
visibility: public
parameters: []
comment: null
- name: warmUp
visibility: public
parameters:
- name: cacheDir
- name: buildDir
default: 'null'
- name: io
default: 'null'
comment: null
- name: isOptional
visibility: public
parameters: []
comment: null
traits:
- Symfony\Component\Console\Style\SymfonyStyle
interfaces:
- CacheWarmerInterface