Question::setNormalizer()

Question setNormalizer(callable $normalizer) Sets a normalizer for the response. The normalizer can be a callable (a string), a closure or a class implementing __invoke. Parameters callable $normalizer Return Value Question The current instance

PropertyAccessExtractorInterface::isWritable()

bool|null isWritable(string $class, string $property, array $context = array()) Is the property writable? Parameters string $class string $property array $context Return Value bool|null

ParameterCircularReferenceException

class ParameterCircularReferenceException extends RuntimeException This exception is thrown when a circular reference in a parameter is detected. Methods __construct($parameters, Exception $previous = null) getParameters() Details __construct($parameters, Exception $previous = null) Parameters $parameters Exception $previous getParameters()

Request::isSecure()

bool isSecure() Checks whether the request is secure or not. This method can read the client protocol from the "X-Forwarded-Proto" header when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". If your reverse proxy uses a different header name than "X-Forwarded-Proto" ("SSL_HTTPS" for instance), configure it via "setTrustedHeaderName()" with the "client-proto" key. Return Value bool

TransTokenParser::getTag()

string getTag() Gets the tag name associated with this token parser. Return Value string The tag name

Command::setName()

Command setName(string $name) Sets the name of the command. This method can set both the namespace and the name if you separate them by a colon (:) $command->setName('foo:bar'); Parameters string $name The command name Return Value Command The current instance Exceptions InvalidArgumentException When the name is invalid

ProcessPipes::unblock()

unblock() Sets non-blocking mode on pipes.

MutableAclInterface::deleteClassAce()

deleteClassAce(int $index) Deletes a class-based ACE Parameters int $index

Process::isSuccessful()

bool isSuccessful() Checks if the process ended successfully. Return Value bool true if the process ended successfully, false otherwise

Route::addRequirements()

Route addRequirements(array $requirements) Adds requirements. This method implements a fluent interface. Parameters array $requirements The requirements Return Value Route The current Route instance