MiniAsset\AssetCollection::append PHP Метод

append() публичный Метод

Append an asset to the collection.
public append ( AssetTarget $target ) : void
$target AssetTarget The target to append
Результат void
    public function append(AssetTarget $target)
    {
        $name = $target->name();
        $this->indexed[$name] = $target;
        $this->items[] = $name;
    }