__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Config\Definition;
use Symfony\Component\Config\Definition\Exception\InvalidTypeException;
/**
* This node represents a scalar value in the config tree.
*
* The following values are considered scalars:
* * booleans
* * strings
* * null
* * integers
* * floats
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class ScalarNode extends VariableNode
{
/**
* @return void
*/
protected function validateType(mixed $value)
{
if (!\is_scalar($value) && null !== $value) {
$ex = new InvalidTypeException(sprintf('Invalid type for path "%s". Expected "scalar", but got "%s".', $this->getPath(), get_debug_type($value)));
if ($hint = $this->getInfo()) {
$ex->addHint($hint);
}
$ex->setPath($this->getPath());
throw $ex;
}
}
protected function isValueEmpty(mixed $value): bool
{
// assume environment variables are never empty (which in practice is likely to be true during runtime)
// not doing so breaks many configs that are valid today
if ($this->isHandlingPlaceholder()) {
return false;
}
return null === $value || '' === $value;
}
protected function getValidPlaceholderTypes(): array
{
return ['bool', 'int', 'float', 'string'];
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Builder | Folder | 0755 |
|
|
| Configurator | Folder | 0755 |
|
|
| Dumper | Folder | 0755 |
|
|
| Exception | Folder | 0755 |
|
|
| Loader | Folder | 0755 |
|
|
| ArrayNode.php | File | 11.68 KB | 0644 |
|
| BaseNode.php | File | 14.82 KB | 0644 |
|
| BooleanNode.php | File | 1.19 KB | 0644 |
|
| ConfigurableInterface.php | File | 594 B | 0644 |
|
| Configuration.php | File | 1.34 KB | 0644 |
|
| ConfigurationInterface.php | File | 613 B | 0644 |
|
| EnumNode.php | File | 2.7 KB | 0644 |
|
| FloatNode.php | File | 1.19 KB | 0644 |
|
| IntegerNode.php | File | 1.06 KB | 0644 |
|
| NodeInterface.php | File | 2.02 KB | 0644 |
|
| NumericNode.php | File | 1.76 KB | 0644 |
|
| Processor.php | File | 2.47 KB | 0644 |
|
| PrototypeNodeInterface.php | File | 610 B | 0644 |
|
| PrototypedArrayNode.php | File | 11.08 KB | 0644 |
|
| ScalarNode.php | File | 1.59 KB | 0644 |
|
| VariableNode.php | File | 3.36 KB | 0644 |
|