Overview

Namespaces

  • Composer
    • Autoload
  • Illuminate
    • Support
      • Contracts
      • Facades
  • Laravella
    • Cart
      • Facades
  • None
  • PHP

Classes

  • ClassLoader
  • Collection
  • Fluent
  • Manager
  • MessageBag
  • NamespacedItemResolver
  • Pluralizer
  • SerializableClosure
  • ServiceProvider
  • Str
  • Overview
  • Namespace
  • Class
  • Tree

Class Fluent

Illuminate\Support\Fluent implements ArrayAccess
Namespace: Illuminate\Support
Located at vendor/illuminate/support/Illuminate/Support/Fluent.php
Methods summary
public
# __construct( array $attributes = array() )

Create a new fluent container instance.

Create a new fluent container instance.

Parameters

$attributes
array
$attributes
public mixed
# get( string $key, mixed $default = null )

Get an attribute from the container.

Get an attribute from the container.

Parameters

$key
string
$key
$default
mixed
$default

Returns

mixed
public array
# getAttributes( )

Get the attributes from the container.

Get the attributes from the container.

Returns

array
public boolean
# offsetExists( string $offset )

Determine if the given offset exists.

Determine if the given offset exists.

Parameters

$offset
string
$offset

Returns

boolean

Implementation of

ArrayAccess::offsetExists()
public mixed
# offsetGet( string $offset )

Get the value for a given offset.

Get the value for a given offset.

Parameters

$offset
string
$offset

Returns

mixed

Implementation of

ArrayAccess::offsetGet()
public
# offsetSet( string $offset, mixed $value )

Set the value at the given offset.

Set the value at the given offset.

Parameters

$offset
string
$offset
$value
mixed
$value

Implementation of

ArrayAccess::offsetSet()
public
# offsetUnset( string $offset )

Unset the value at the given offset.

Unset the value at the given offset.

Parameters

$offset
string
$offset

Implementation of

ArrayAccess::offsetUnset()
public Illuminate\Support\Fluent
# __call( string $method, array $parameters )

Handle dynamic calls to the container to set attributes.

Handle dynamic calls to the container to set attributes.

Parameters

$method
string
$method
$parameters
array
$parameters

Returns

Illuminate\Support\Fluent
public mixed
# __get( string $key )

Dynamically retrieve the value of an attribute.

Dynamically retrieve the value of an attribute.

Parameters

$key
string
$key

Returns

mixed
public
# __set( string $key, mixed $value )

Dynamically set the value of an attribute.

Dynamically set the value of an attribute.

Parameters

$key
string
$key
$value
mixed
$value
public
# __isset( string $key )

Dynamically check if an attribute is set.

Dynamically check if an attribute is set.

Parameters

$key
string
$key
public
# __unset( string $key )

Dynamically unset an attribute.

Dynamically unset an attribute.

Parameters

$key
string
$key
Properties summary
protected array $attributes array()
#

All of the attributes set on the container.

All of the attributes set on the container.

cart API documentation generated by ApiGen 2.8.0