Expression::isRegex()

bool isRegex() Return Value bool

HtmlExtension::translateHover()

XPathExpr translateHover(XPathExpr $xpath) Parameters XPathExpr $xpath Return Value XPathExpr

ExecutionContextInterface::markGroupAsValidated()

markGroupAsValidated(string $cacheKey, string $groupHash) Marks an object as validated in a specific validation group. Parameters string $cacheKey The hash of the object string $groupHash The group's name or hash, if it is group sequence

FileResource

class FileResource implements SelfCheckingResourceInterface, Serializable FileResource represents a resource stored on the filesystem. The resource can be a file or a directory. Methods __construct(string $resource) Constructor. string __toString() Returns a string representation of the Resource. string getResource() bool isFresh(int $timestamp) Returns true if the resource has not been updated since the given timestamp. serialize() unserialize($serialized)

Component\Config\Definition

Namespaces Symfony\Component\Config\Definition\BuilderSymfony\Component\Config\Definition\Exception Classes ArrayNode Represents an Array node in the config tree. BaseNode The base node class BooleanNode This node represents a Boolean value in the config tree. EnumNode Node which only allows a finite set of values. FloatNode This node represents a float value in the config tree. IntegerNode This node represents an integer value in the config tree. NumericNode This n

ExecutionContext deprecated::getPropertyPath()

string getPropertyPath(string $subPath = '') Returns the property path to the value that the validator is currently validating. For example, take the following object graph: (Person)---($address: Address)---($street: string) When the Person instance is passed to the validator, the property path is initially empty. When the $address property of that person is validated, the property path is "address". When the $street property of the related Address instance is validated, the pr

ExceptionListener

class ExceptionListener implements EventSubscriberInterface ExceptionListener. Methods __construct($controller, LoggerInterface $logger = null) onKernelException(GetResponseForExceptionEvent $event) static array getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. Details __construct($controller, LoggerInterface $logger = null) Parameters $controller LoggerInterface $logger

Component\Security

Namespaces Symfony\Component\Security\AclSymfony\Component\Security\CoreSymfony\Component\Security\Http

RemoteUserFactory::create()

create(ContainerBuilder $container, $id, $config, $userProvider, $defaultEntryPoint) Parameters ContainerBuilder $container $id $config $userProvider $defaultEntryPoint

XmlUtils::convertDomElementToArray()

static array convertDomElementToArray(DOMElement $element, bool $checkPrefix = true) Converts a \DomElement object to a PHP array. The following rules applies during the conversion: Each tag is converted to a key value or an array if there is more than one "value" The content of a tag is set under a "value" key (bar) if the tag also has some nested tags The attributes are converted to keys () The nested-tags are converted to keys (bar) Parameters DOMElement $element