KernelInterface::shutdown()

shutdown() Shutdowns the kernel. This method is mainly useful when doing functional testing.

AdvancedUserInterface::isEnabled()

bool isEnabled() Checks whether the user is enabled. Internally, if this method returns false, the authentication system will throw a DisabledException and prevent login. Return Value bool true if the user is enabled, false otherwise See also DisabledException

FileDumper::formatCatalogue()

abstract string formatCatalogue(MessageCatalogue $messages, string $domain, array $options = array()) Transforms a domain of a message catalogue to its string representation. Parameters MessageCatalogue $messages string $domain array $options Return Value string representation

RedirectableUrlMatcher

class RedirectableUrlMatcher extends RedirectableUrlMatcher Constants REQUIREMENT_MATCH REQUIREMENT_MISMATCH ROUTE_MATCH Methods __construct(RouteCollection $routes, RequestContext $context) Constructor. from UrlMatcher setContext(RequestContext $context) Sets the request context. from UrlMatcher RequestContext getContext() Gets the request context. from UrlMatcher array match(string $pathinfo) Tries to match a URL path with a set of routes. from RedirectableUrlM

BundleReaderInterface::read()

mixed read(string $path, string $locale) Reads a resource bundle. Parameters string $path The path to the resource bundle. string $locale The locale to read. Return Value mixed Returns an array or {@link \ArrayAccess} instance for complex data, a scalar value otherwise.

TokenProviderInterface::loadTokenBySeries()

PersistentTokenInterface loadTokenBySeries(string $series) Loads the active token for the given series. Parameters string $series Return Value PersistentTokenInterface Exceptions TokenNotFoundException if the token is not found

FileType::finishView()

finishView(FormView $view, FormInterface $form, array $options) Finishes the form view. This method gets called for each type in the hierarchy starting from the top most type. Type extensions can further modify the view. When this method is called, views of the form's children have already been built and finished and can be accessed. You should only implement such logic in this method that actually accesses child views. For everything else you are recommended to implement {@link buil

SecurityExtension::getNamespace()

string getNamespace() Returns the namespace to be used for this extension (XML namespace). Return Value string The XML namespace

DefaultCsrfProvider deprecated::generateCsrfToken()

string generateCsrfToken(string $intention) Generates a CSRF token for a page of your application. Parameters string $intention Some value that identifies the action intention (i.e. "authenticate"). Doesn't have to be a secret value. Return Value string The generated token

TableHelper deprecated::setPaddingChar()

TableHelper setPaddingChar(string $paddingChar) Sets padding character, used for cell padding. Parameters string $paddingChar Return Value TableHelper