Files
ponzi/laravel/cli/tasks/bundle/providers/provider.php
2012-01-16 13:59:24 -06:00

13 lines
222 B
PHP

<?php namespace Laravel\CLI\Tasks\Bundle\Providers;
interface Provider {
/**
* Install the given bundle into the application.
*
* @param string $bundle
* @return void
*/
public function install($bundle);
}