You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2018. It is now read-only.
Mario Basic edited this page Mar 31, 2015
·
8 revisions
Dependency injection in Laravel
use Laravelista\Bard\Sitemap;
class SitemapController {
protected $sitemap;
public function __construct(Sitemap $sitemap)
{
$this->sitemap = $sitemap;
}
}