AbstractTypeExtension::configureOptions()

configureOptions(OptionsResolver $resolver) Configures the options for this type. Parameters OptionsResolver $resolver The resolver for the options.

ConstraintViolationBuilder::atPath()

ConstraintViolationBuilderInterface atPath(string $path) Stores the property path at which the violation should be generated. The passed path will be appended to the current property path of the execution context. Parameters string $path The property path Return Value ConstraintViolationBuilderInterface This builder

OptionsResolver::setNormalizer()

OptionsResolver setNormalizer(string $option, Closure $normalizer) Sets the normalizer for an option. The normalizer should be a closure with the following signature: php function (Options $options, $value) { // ... } The closure is invoked when {@link resolve()} is called. The closure has access to the resolved values of other options through the passed {@link Options} instance. The second parameter passed to the closure is the value of the option. The resolved option value

BadCredentialsException

class BadCredentialsException extends AuthenticationException BadCredentialsException is thrown when the user credentials are invalid. Methods TokenInterface getToken() Get the token. from AuthenticationException setToken(TokenInterface $token) Set the token. from AuthenticationException serialize() from AuthenticationException unserialize($str) from AuthenticationException string getMessageKey() Message key to be used by the translation component. array getMessage

PropertyPathBuilder::appendIndex()

appendIndex(string $name) Appends an index element to the current path. Parameters string $name The name of the appended index

InputStream::getIterator()

getIterator()

ClosureLoader

class ClosureLoader extends Loader ClosureLoader loads routes from a PHP closure. The Closure must return a RouteCollection instance. Methods LoaderResolverInterface getResolver() Gets the loader resolver. from Loader setResolver(LoaderResolverInterface $resolver) Sets the loader resolver. from Loader mixed import(mixed $resource, string|null $type = null) Imports a resource. from Loader LoaderInterface resolve(mixed $resource, string|null $type = null) Finds a loader able to

ServiceUnavailableHttpException

class ServiceUnavailableHttpException extends HttpException ServiceUnavailableHttpException. Methods __construct(int|string $retryAfter = null, $message = null, Exception $previous = null, $code) Constructor. int getStatusCode() Returns the status code. from HttpException array getHeaders() Returns response headers. from HttpException Details __construct(int|string $retryAfter = null, $message = null, Exception $previous = null, $code)

TraceableUrlMatcher::getTracesForRequest()

getTracesForRequest(Request $request) Parameters Request $request

ExecutionContext::getClassName()

string|null getClassName() Returns the class name of the current node. If the metadata of the current node does not implement {@link Mapping\ClassMetadataInterface} or if no metadata is available for the current node, this method returns null. Return Value string|null The class name or null, if no class name could be found