Class Fluent

Namespace: Laravel
Located at fluent.php
Methods summary
public
# __construct( array $attributes = array() )

Create a new fluent container instance.

public mixed
# get( string $attribute, mixed $default = null )

Get an attribute from the fluent container.

public
# __call( $method, $parameters )

Handle dynamic calls to the container to set attributes.

public
# __get( $key )

Dynamically retrieve the value of an attribute.

public
# __set( $key, $value )

Dynamically set the value of an attribute.

public
# __isset( $key )

Dynamically check if an attribute is set.

public
# __unset( $key )

Dynamically unset an attribute.

Properties summary
public array $attributes array()
#

All of the attributes set on the fluent container.