AnonymousToken

class AnonymousToken extends AbstractToken AnonymousToken represents an anonymous token. Methods __construct(string $secret, string|object $user, array $roles = array()) Constructor. RoleInterface[] getRoles() Returns the user roles. from AbstractToken string getUsername() Returns the username. from AbstractToken mixed getUser() Returns a user representation. from AbstractToken setUser(mixed $user) Sets a user. from AbstractToken bool isAuthenticated() Returns whethe

Finder::create()

static Finder create() Creates a new Finder. Return Value Finder A new Finder instance

Acl::updateObjectFieldAce()

updateObjectFieldAce(int $index, string $field, int $mask, string $strategy = null) Updates an object-field-based ACE Parameters int $index string $field int $mask string $strategy if null the strategy should not be changed

MessageDigestPasswordEncoder::isPasswordValid()

bool isPasswordValid(string $encoded, string $raw, string $salt) Checks a raw password against an encoded password. Parameters string $encoded An encoded password string $raw A raw password string $salt The salt Return Value bool true if the password is valid, false otherwise

ProgressBar::setRedrawFrequency()

setRedrawFrequency(int|float $freq) Sets the redraw frequency. Parameters int|float $freq The frequency in steps

Bridge\Twig\Command

Classes LintCommand Command that will validate your template syntax and output encountered errors.

Application::getAbbreviations()

static array getAbbreviations(array $names) Returns an array of possible abbreviations given a set of names. Parameters array $names An array of names Return Value array An array of abbreviations

SvnRepository::getLastCommit()

SvnCommit getLastCommit() Returns the last commit of the repository. Return Value SvnCommit The last commit

User::getSalt()

string|null getSalt() Returns the salt that was originally used to encode the password. This can return null if the password was not encoded using a salt. Return Value string|null The salt

ExpressionLanguage::register()

register(string $name, callable $compiler, callable $evaluator) Registers a function. Parameters string $name The function name callable $compiler A callable able to compile the function callable $evaluator A callable able to evaluate the function See also ExpressionFunction