ChoiceListInterface::getChoices()

array getChoices() Returns all selectable choices. Return Value array The selectable choices indexed by the corresponding values

NativeSessionStorage::getSaveHandler()

AbstractProxy getSaveHandler() Gets the save handler instance. Return Value AbstractProxy

ShellCommandFailureException deprecated

class ShellCommandFailureException extends AdapterFailureException deprecated since 2.8, to be removed in 3.0. Methods __construct(AdapterInterface $adapter, Command $command, Exception $previous = null) AdapterInterface getAdapter() from AdapterFailureException Command getCommand() Details __construct(AdapterInterface $adapter, Command $command, Exception $previous = null) Parameters AdapterInterface $adapter Command $command

MutableAclProviderInterface::deleteAcl()

deleteAcl(ObjectIdentityInterface $oid) Deletes the ACL for a given object identity. This will automatically trigger a delete for any child ACLs. If you don't want child ACLs to be deleted, you will have to set their parent ACL to null. Parameters ObjectIdentityInterface $oid

StoreInterface::unlock()

bool unlock(Request $request) Releases the lock for the given Request. Parameters Request $request A Request instance Return Value bool False if the lock file does not exist or cannot be unlocked, true otherwise

IntlDateFormatter::setTimeZone()

bool setTimeZone(mixed $timeZone) This method was added in PHP 5.5 as replacement for setTimeZoneId(). Parameters mixed $timeZone Return Value bool true on success or false on failure See also http://www.php.net/manual/en/intldateformatter.settimezone.php

Component\DependencyInjection\Compiler

Classes AnalyzeServiceReferencesPass Run this pass before passes that need to know more about the relation of your services. CheckCircularReferencesPass Checks your services for circular references CheckDefinitionValidityPass This pass validates each definition individually only taking the information into account which is contained in the definition itself. CheckExceptionOnInvalidReferenceBehaviorPass Checks that all references are pointing to a valid service. CheckReferenceVa

DoctrineType::createChoiceLabel()

static string createChoiceLabel(object $choice) Creates the label for a choice. For backwards compatibility, objects are cast to strings by default. Parameters object $choice The object Return Value string The string representation of the object

ValidatorInterface::validatePropertyValue()

ConstraintViolationListInterface validatePropertyValue(object|string $objectOrClass, string $propertyName, mixed $value, array|null $groups = null) Validates a value against the constraints specified for an object's property. Parameters object|string $objectOrClass The object or its class name string $propertyName The name of the property mixed $value The value to validate against the property's constraints array|null $groups The validation groups to validate. If none is given

File

class File extends SplFileInfo A file in the file system. Methods __construct(string $path, bool $checkPath = true) Constructs a new file from the given path. string|null guessExtension() Returns the extension based on the mime type. string|null getMimeType() Returns the mime type of the file. File move(string $directory, string $name = null) Moves the file to a new location. Details __construct(string $path, bool $checkPath = true)