GuardAuthenticatorInterface

interface GuardAuthenticatorInterface implements AuthenticationEntryPointInterface The interface for all "guard" authenticators. The methods on this interface are called throughout the guard authentication process to give you the power to control most parts of the process from one location. Methods Response start(Request $request, AuthenticationException $authException = null) Returns a response that directs the user to authenticate. from AuthenticationEntryPointInterface mixed|null

UrlPackage::getUrl()

string getUrl(string $path) Returns an absolute or root-relative public path. Parameters string $path A path Return Value string The public path

RememberMeAuthenticationProvider

class RememberMeAuthenticationProvider implements AuthenticationProviderInterface Methods __construct(UserCheckerInterface $userChecker, string $secret, string $providerKey) Constructor. TokenInterface authenticate(TokenInterface $token) Attempts to authenticate a TokenInterface object. bool supports(TokenInterface $token) Checks whether this provider supports the given token. Details __construct(UserCheckerInterface $userChecker, string $secret,

Form::has()

bool has(string $name) Returns whether a child with the given name exists. Parameters string $name The name of the child Return Value bool

AnnotationDirectoryLoader

class AnnotationDirectoryLoader extends AnnotationFileLoader AnnotationDirectoryLoader loads routing information from annotations set on PHP classes and methods. 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, bool $ignoreErrors = false, string|null $sourceResource = null) Imports a resource. from FileLoa

SymfonyTestsListener::startTest()

startTest(PHPUnit_Framework_Test $test) Parameters PHPUnit_Framework_Test $test

Component\PropertyInfo

Namespaces Symfony\Component\PropertyInfo\Extractor Classes PropertyInfoExtractor Default {see PropertyInfoExtractorInterface} implementation. Type Type value object (immutable). Interfaces PropertyAccessExtractorInterface Guesses if the property can be accessed or mutated. PropertyDescriptionExtractorInterface Description extractor Interface. PropertyInfoExtractorInterface Gets info about PHP class properties. PropertyListExtractorInterface Extracts the list of prope

PostResponseEvent

class PostResponseEvent extends KernelEvent Allows to execute logic after a response was sent. Since it's only triggered on master requests, the getRequestType() method will always return the value of HttpKernelInterface::MASTER_REQUEST. Methods bool isPropagationStopped() Returns whether further event listeners should be triggered. from Event stopPropagation() Stops the propagation of the event to further event listeners. from Event setDispatcher(EventDispatcherInterface $dispat

BirthdayType::getParent()

string|null getParent() Returns the name of the parent type. Return Value string|null The name of the parent type if any, null otherwise

ExpressionLanguage::addFunction()

addFunction(ExpressionFunction $function) Parameters ExpressionFunction $function