Crawler::getBaseHref()

string getBaseHref() Returns base href. Return Value string

MemoryDataCollector::getName()

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

ClassMetadata::setGroupSequence()

ClassMetadata setGroupSequence(array $groupSequence) Sets the default group sequence for this class. Parameters array $groupSequence An array of group names Return Value ClassMetadata Exceptions GroupDefinitionException

ClassMetadata::getDefaultGroup()

string getDefaultGroup() Returns the name of the default group for this class. For each class, the group "Default" is an alias for the group "", where is the non-namespaced name of the class. All constraints implicitly or explicitly assigned to group "Default" belong to both of these groups, unless the class defines a group sequence. If a class defines a group sequence, validating the class in "Default" will validate the group sequence. The constraints assigned to "Default" can

MessageCatalogueInterface::getFallbackCatalogue()

MessageCatalogueInterface|null getFallbackCatalogue() Gets the fallback catalogue. Return Value MessageCatalogueInterface|null A MessageCatalogueInterface instance or null when no fallback has been set

Finder::sortByChangedTime()

Finder|SplFileInfo[] sortByChangedTime() Sorts files and directories by the last inode changed time. This is the time that the inode information was last modified (permissions, owner, group or other metadata). On Windows, since inode is not available, changed time is actually the file creation time. This can be slow as all the matching files and directories must be retrieved for comparison. Return Value Finder|SplFileInfo[] The current Finder instance See also SortableIterato

RequestContext::getScheme()

string getScheme() Gets the HTTP scheme. Return Value string The HTTP scheme

UriSigner::check()

bool check(string $uri) Checks that a URI contains the correct hash. The _hash query string parameter must be the last one (as it is generated that way by the sign() method, it should never be a problem). Parameters string $uri A signed URI Return Value bool True if the URI is signed correctly, false otherwise

YamlFileLoader

class YamlFileLoader extends FileLoader YamlFileLoader loads translations from Yaml files. Methods MessageCatalogue load(mixed $resource, string $locale, string $domain = 'messages') Loads a locale. from FileLoader Details MessageCatalogue load(mixed $resource, string $locale, string $domain = 'messages') Loads a locale. Parameters mixed $resource A resource string $locale A locale string $domain The domain Return Value MessageCatalogue A Mess

Route::setRequirement()

Route setRequirement(string $key, string $regex) Sets a requirement for the given key. Parameters string $key The key string $regex The regex Return Value Route The current Route instance