RingBuffer::offsetUnset()

offsetUnset($key) {@inheritdoc} Parameters $key

RingBuffer::offsetGet()

offsetGet($key) {@inheritdoc} Parameters $key

RingBuffer::offsetExists()

offsetExists($key) {@inheritdoc} Parameters $key

RingBuffer

class RingBuffer implements ArrayAccess Implements a ring buffer. A ring buffer is an array-like structure with a fixed size. If the buffer is full, the next written element overwrites the first bucket in the buffer, then the second and so on. Methods __construct($size) offsetExists($key) {@inheritdoc} offsetGet($key) {@inheritdoc} offsetSet($key, $value) {@inheritdoc} offsetUnset($key) {@inheritdoc} Details __construct($size)

RingBuffer::offsetExists()

offsetExists($key) {@inheritdoc} Parameters $key

RingBuffer

class RingBuffer implements ArrayAccess Implements a ring buffer. A ring buffer is an array-like structure with a fixed size. If the buffer is full, the next written element overwrites the first bucket in the buffer, then the second and so on. Methods __construct($size) offsetExists($key) {@inheritdoc} offsetGet($key) {@inheritdoc} offsetSet($key, $value) {@inheritdoc} offsetUnset($key) {@inheritdoc} Details __construct($size)

RetryAuthenticationEntryPoint

class RetryAuthenticationEntryPoint implements AuthenticationEntryPointInterface RetryAuthenticationEntryPoint redirects URL based on the configured scheme. This entry point is not intended to work with HTTP post requests. Methods __construct($httpPort = 80, $httpsPort = 443) Response start(Request $request, AuthenticationException $authException = null) Starts the authentication scheme. Details __construct($httpPort = 80, $httpsPort = 443)

ReversedTransformer::transform()

mixed transform(mixed $value) Transforms a value from the original representation to a transformed representation. This method is called on two occasions inside a form field: When the form field is initialized with the data attached from the datasource (object or array). When data from a request is submitted using {@link Form::submit()} to transform the new input data back into the renderable format. For example if you have a date field and submit '2009-10-10' you might accept th

ReversedTransformer::reverseTransform()

mixed reverseTransform(mixed $value) Transforms a value from the transformed representation to its original representation. This method is called when {@link Form::submit()} is called to transform the requests tainted data into an acceptable format for your data processing/model layer. This method must be able to deal with empty values. Usually this will be an empty string, but depending on your implementation other empty values are possible as well (such as empty strings). The r

ReversedTransformer

class ReversedTransformer implements DataTransformerInterface Reverses a transformer. When the transform() method is called, the reversed transformer's reverseTransform() method is called and vice versa. Methods __construct(DataTransformerInterface $reversedTransformer) Reverses this transformer. mixed transform(mixed $value) Transforms a value from the original representation to a transformed representation. mixed reverseTransform(mixed $value) Transforms a value from the tran