Installer\Bundle\BundleCollection::getFormatted PHP Method

getFormatted() public method

public getFormatted ( $space = 4 )
    public function getFormatted($space = 4)
    {
        $bundles = '';
        foreach ($this->collection as $bundle) {
            $bundles .= $bundle->get() . ",\n" . str_repeat(' ', $space);
        }
        return trim($bundles);
    }