Connection collection.
protected get_definitions( void )
protected get_established( void )
public __construct( array $definitions )
$definitions
Initializes the $definitions property.
public offsetExists( string $id ) : boolean
$id
Checks if a connection definition exists.
ArrayAccess::offsetExists()
public offsetSet( string $id, array|string $definition )
$definition
Sets the definition of a connection.
ICanBoogie\ActiveRecord\ConnectionAlreadyEstablished
in attempt to set the definition of an already established connection.
ArrayAccess::offsetSet()
public offsetUnset( string $id )
Removes a connection definition.
in attempt to unset the definition of an already established connection.
ArrayAccess::offsetUnset()
public offsetGet( string $id ) : ICanBoogie\ActiveRecord\Connection
ICanBoogie\ActiveRecord\Connection
Returns a connection to the specified database.
If the connection has not been established yet, it is created on the fly.
ICanBoogie\ActiveRecord\ConnectionNotDefined
ICanBoogie\ActiveRecord\ConnectionNotEstablished
ArrayAccess::offsetGet()
public getIterator( void )
Returns an iterator for established connections.
IteratorAggregate::getIterator()
public read-only $definitions : array
Connection definitions.
public read-only $established : ICanBoogie\ActiveRecord\Connection[]
ICanBoogie\ActiveRecord\Connection[]
Established connections.