WritableArrayRepository
extends ArrayRepository
in package
implements
WritableRepositoryInterface
Writable array repository.
Tags
Interfaces, Classes and Traits
- WritableRepositoryInterface
- Writable repository interface.
Table of Contents
- $packageMap : array<string|int, PackageInterface>
- $packages : array<string|int, PackageInterface>
- __construct() : mixed
- addPackage() : mixed
- Adds a new package to the repository
- count() : int
- Returns the number of packages in this repository
- findPackage() : mixed
- {@inheritDoc}
- findPackages() : mixed
- {@inheritDoc}
- getCanonicalPackages() : array<string|int, PackageInterface>
- Get unique packages (at most one package of each name), with aliases resolved and removed.
- getDependents() : array<string|int, mixed>
- Returns a list of links causing the requested needle packages to be installed, as an associative array with the dependent's name as key, and an array containing in order the PackageInterface and Link describing the relationship as values. If recursive lookup was requested a third value is returned containing an identically formed array up to the root package. That third value will be false in case a circular recursion was detected.
- getPackages() : mixed
- {@inheritDoc}
- hasPackage() : mixed
- {@inheritDoc}
- reload() : mixed
- Forces a reload of all packages.
- removePackage() : mixed
- Removes package from repository.
- search() : mixed
- {@inheritDoc}
- write() : mixed
- Writes repository (f.e. to the disc).
- createAliasPackage() : mixed
- initialize() : mixed
- Initializes the packages array. Mostly meant as an extension point.
Properties
$packageMap
protected
array<string|int, PackageInterface>
$packageMap
indexed by package unique name and used to cache hasPackage calls
$packages
protected
array<string|int, PackageInterface>
$packages
Methods
__construct()
public
__construct([array<string|int, mixed> $packages = array() ]) : mixed
Parameters
- $packages : array<string|int, mixed> = array()
Return values
mixed —addPackage()
Adds a new package to the repository
public
addPackage(PackageInterface $package) : mixed
Parameters
- $package : PackageInterface
Return values
mixed —count()
Returns the number of packages in this repository
public
count() : int
Return values
int —Number of packages
findPackage()
{@inheritDoc}
public
findPackage(mixed $name, mixed $constraint) : mixed
Parameters
- $name : mixed
- $constraint : mixed
Return values
mixed —findPackages()
{@inheritDoc}
public
findPackages(mixed $name[, mixed $constraint = null ]) : mixed
Parameters
- $name : mixed
- $constraint : mixed = null
Return values
mixed —getCanonicalPackages()
Get unique packages (at most one package of each name), with aliases resolved and removed.
public
getCanonicalPackages() : array<string|int, PackageInterface>
Return values
array<string|int, PackageInterface> —getDependents()
Returns a list of links causing the requested needle packages to be installed, as an associative array with the dependent's name as key, and an array containing in order the PackageInterface and Link describing the relationship as values. If recursive lookup was requested a third value is returned containing an identically formed array up to the root package. That third value will be false in case a circular recursion was detected.
public
getDependents(string|array<string|int, string> $needle[, ConstraintInterface|null $constraint = null ][, bool $invert = false ][, bool $recurse = true ][, array<string|int, string> $packagesFound = null ]) : array<string|int, mixed>
Parameters
- $needle : string|array<string|int, string>
-
The package name(s) to inspect.
- $constraint : ConstraintInterface|null = null
-
Optional constraint to filter by.
- $invert : bool = false
-
Whether to invert matches to discover reasons for the package NOT to be installed.
- $recurse : bool = true
-
Whether to recursively expand the requirement tree up to the root package.
- $packagesFound : array<string|int, string> = null
-
Used internally when recurring
Return values
array<string|int, mixed> —An associative array of arrays as described above.
getPackages()
{@inheritDoc}
public
getPackages() : mixed
Return values
mixed —hasPackage()
{@inheritDoc}
public
hasPackage(PackageInterface $package) : mixed
Parameters
- $package : PackageInterface
Return values
mixed —reload()
Forces a reload of all packages.
public
reload() : mixed
Return values
mixed —removePackage()
Removes package from repository.
public
removePackage(PackageInterface $package) : mixed
Parameters
- $package : PackageInterface
-
package instance
Return values
mixed —search()
{@inheritDoc}
public
search(mixed $query, mixed $mode[, mixed $type = null ]) : mixed
Parameters
- $query : mixed
- $mode : mixed
- $type : mixed = null
Return values
mixed —write()
Writes repository (f.e. to the disc).
public
write() : mixed
Return values
mixed —createAliasPackage()
protected
createAliasPackage(PackageInterface $package, mixed $alias, mixed $prettyAlias) : mixed
Parameters
- $package : PackageInterface
- $alias : mixed
- $prettyAlias : mixed
Return values
mixed —initialize()
Initializes the packages array. Mostly meant as an extension point.
protected
initialize() : mixed