Expression::getTargets()

string|array getTargets() Returns whether the constraint can be put onto classes, properties or both. This method should return one or more of the constants Constraint::CLASSCONSTRAINT and Constraint::PROPERTYCONSTRAINT. Return Value string|array One or more constant values

Component\Form\Guess

Classes Guess Base class for guesses made by TypeGuesserInterface implementation TypeGuess Contains a guessed class name and a list of options for creating an instance of that class ValueGuess Contains a guessed value

Cookie::isSecure()

bool isSecure() Checks whether the cookie should only be transmitted over a secure HTTPS connection from the client. Return Value bool

ChainCacheClearer

class ChainCacheClearer implements CacheClearerInterface ChainCacheClearer. Methods __construct(array $clearers = array()) Constructs a new instance of ChainCacheClearer. clear(string $cacheDir) Clears any caches necessary. add(CacheClearerInterface $clearer) Adds a cache clearer to the aggregate. Details __construct(array $clearers = array()) Constructs a new instance of ChainCacheClearer. Parameters array $clearers The initial cl

TableCell::getRowspan()

int getRowspan() Gets number of rowspan. Return Value int

Profiler

class Profiler Profiler. Methods __construct(ProfilerStorageInterface $storage, LoggerInterface $logger = null) Constructor. disable() Disables the profiler. enable() Enables the profiler. Profile|false loadProfileFromResponse(Response $response) Loads the Profile for the given Response. Profile loadProfile(string $token) Loads the Profile for the given token. bool saveProfile(Profile $profile) Saves a Profile. purge() Purges all data from the storage. ar

Crawler::addDocument()

addDocument(DOMDocument $dom) Adds a \DOMDocument to the list of nodes. Parameters DOMDocument $dom A \DOMDocument instance

NodeInterface::getName()

string getName() Returns the name of the node. Return Value string The name of the node

NodeInterface::merge()

mixed merge(mixed $leftSide, mixed $rightSide) Merges two values together. Parameters mixed $leftSide mixed $rightSide Return Value mixed The merged values

BlankValidator

class BlankValidator extends ConstraintValidator Constants PRETTY_DATE Whether to format {@link \DateTime} objects as RFC-3339 dates ("Y-m-d H:i:s"). OBJECT_TO_STRING Whether to cast objects with a "__toString()" method to strings. Methods initialize(ExecutionContextInterface $context) Initializes the constraint validator. from ConstraintValidator validate(mixed $value, Constraint $constraint) Checks if the passed value is valid. Details initial