PATH:
home
/
sarkas88.com
/
public_html
/
wp-content
/
plugins
/
amp
/
vendor
/
ampproject
/
amp-toolbox
/
src
/
Optimizer
<?php namespace AmpProject\Optimizer; use AmpProject\Optimizer\Exception\UnknownConfigurationKey; /** * Interface for a configuration that validates and stores configuration settings for an individual transformer. * * @package ampproject/amp-toolbox */ interface TransformerConfiguration { /** * Get the value for a given key. * * The key is assumed to exist and will throw an exception if it can't be retrieved. * This means that all configuration entries should come with a default value. * * @param string $key Key of the configuration entry to retrieve. * @return mixed Value stored under the given configuration key. * @throws UnknownConfigurationKey If an unknown key was provided. */ public function get($key); /** * Get an array of configuration entries for this transformer configuration. * * @return array Associative array of configuration entries. */ public function toArray(); }
[+]
Exception
[-] ErrorCollection.php
[open]
[-] DefaultConfiguration.php
[open]
[-] ImageDimensions.php
[open]
[-] Configuration.php
[open]
[-] HeroImage.php
[open]
[+]
Error
[+]
Transformer
[-] CssRules.php
[open]
[-] TransformationEngine.php
[open]
[+]
Configuration
[-] Transformer.php
[open]
[-] TransformerConfiguration.php
[open]
[+]
..
[-] Error.php
[open]
[-] LocalFallback.php
[open]
[-] CssRule.php
[open]