caisse-bliss/var/cache/dev/Symfony/Config/WebpackEncoreConfig.php

218 lines
6.2 KiB
PHP

<?php
namespace Symfony\Config;
use Symfony\Component\Config\Loader\ParamConfigurator;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
/**
* This class is automatically generated to help in creating a config.
*/
class WebpackEncoreConfig implements \Symfony\Component\Config\Builder\ConfigBuilderInterface
{
private $outputPath;
private $crossorigin;
private $preload;
private $cache;
private $strictMode;
private $builds;
private $scriptAttributes;
private $linkAttributes;
private $_usedProperties = [];
/**
* The path where Encore is building the assets - i.e. Encore.setOutputPath()
* @default null
* @param ParamConfigurator|mixed $value
* @return $this
*/
public function outputPath($value): static
{
$this->_usedProperties['outputPath'] = true;
$this->outputPath = $value;
return $this;
}
/**
* crossorigin value when Encore.enableIntegrityHashes() is used, can be false (default), anonymous or use-credentials
* @default false
* @param ParamConfigurator|false|'anonymous'|'use-credentials' $value
* @return $this
*/
public function crossorigin($value): static
{
$this->_usedProperties['crossorigin'] = true;
$this->crossorigin = $value;
return $this;
}
/**
* preload all rendered script and link tags automatically via the http2 Link header.
* @default false
* @param ParamConfigurator|bool $value
* @return $this
*/
public function preload($value): static
{
$this->_usedProperties['preload'] = true;
$this->preload = $value;
return $this;
}
/**
* Enable caching of the entry point file(s)
* @default false
* @param ParamConfigurator|bool $value
* @return $this
*/
public function cache($value): static
{
$this->_usedProperties['cache'] = true;
$this->cache = $value;
return $this;
}
/**
* Throw an exception if the entrypoints.json file is missing or an entry is missing from the data
* @default true
* @param ParamConfigurator|bool $value
* @return $this
*/
public function strictMode($value): static
{
$this->_usedProperties['strictMode'] = true;
$this->strictMode = $value;
return $this;
}
/**
* @return $this
*/
public function builds(string $name, mixed $value): static
{
$this->_usedProperties['builds'] = true;
$this->builds[$name] = $value;
return $this;
}
/**
* @return $this
*/
public function scriptAttributes(string $name, mixed $value): static
{
$this->_usedProperties['scriptAttributes'] = true;
$this->scriptAttributes[$name] = $value;
return $this;
}
/**
* @return $this
*/
public function linkAttributes(string $name, mixed $value): static
{
$this->_usedProperties['linkAttributes'] = true;
$this->linkAttributes[$name] = $value;
return $this;
}
public function getExtensionAlias(): string
{
return 'webpack_encore';
}
public function __construct(array $value = [])
{
if (array_key_exists('output_path', $value)) {
$this->_usedProperties['outputPath'] = true;
$this->outputPath = $value['output_path'];
unset($value['output_path']);
}
if (array_key_exists('crossorigin', $value)) {
$this->_usedProperties['crossorigin'] = true;
$this->crossorigin = $value['crossorigin'];
unset($value['crossorigin']);
}
if (array_key_exists('preload', $value)) {
$this->_usedProperties['preload'] = true;
$this->preload = $value['preload'];
unset($value['preload']);
}
if (array_key_exists('cache', $value)) {
$this->_usedProperties['cache'] = true;
$this->cache = $value['cache'];
unset($value['cache']);
}
if (array_key_exists('strict_mode', $value)) {
$this->_usedProperties['strictMode'] = true;
$this->strictMode = $value['strict_mode'];
unset($value['strict_mode']);
}
if (array_key_exists('builds', $value)) {
$this->_usedProperties['builds'] = true;
$this->builds = $value['builds'];
unset($value['builds']);
}
if (array_key_exists('script_attributes', $value)) {
$this->_usedProperties['scriptAttributes'] = true;
$this->scriptAttributes = $value['script_attributes'];
unset($value['script_attributes']);
}
if (array_key_exists('link_attributes', $value)) {
$this->_usedProperties['linkAttributes'] = true;
$this->linkAttributes = $value['link_attributes'];
unset($value['link_attributes']);
}
if ([] !== $value) {
throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value)));
}
}
public function toArray(): array
{
$output = [];
if (isset($this->_usedProperties['outputPath'])) {
$output['output_path'] = $this->outputPath;
}
if (isset($this->_usedProperties['crossorigin'])) {
$output['crossorigin'] = $this->crossorigin;
}
if (isset($this->_usedProperties['preload'])) {
$output['preload'] = $this->preload;
}
if (isset($this->_usedProperties['cache'])) {
$output['cache'] = $this->cache;
}
if (isset($this->_usedProperties['strictMode'])) {
$output['strict_mode'] = $this->strictMode;
}
if (isset($this->_usedProperties['builds'])) {
$output['builds'] = $this->builds;
}
if (isset($this->_usedProperties['scriptAttributes'])) {
$output['script_attributes'] = $this->scriptAttributes;
}
if (isset($this->_usedProperties['linkAttributes'])) {
$output['link_attributes'] = $this->linkAttributes;
}
return $output;
}
}