Skip to content

Commit

Permalink
Merge pull request #96 from patrickbrouwers/patch-1
Browse files Browse the repository at this point in the history
HtmlBuilder shouldn't depend on concrete implementation
  • Loading branch information
adamgoose committed Nov 28, 2015
2 parents 2516472 + 575d891 commit f622696
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/HtmlBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Collective\Html;

use Illuminate\Routing\UrlGenerator;
use Illuminate\Contracts\Routing\UrlGenerator;
use Illuminate\Support\Traits\Macroable;

class HtmlBuilder
Expand All @@ -12,14 +12,14 @@ class HtmlBuilder
/**
* The URL generator instance.
*
* @var \Illuminate\Routing\UrlGenerator
* @var \Illuminate\Contracts\Routing\UrlGenerator
*/
protected $url;

/**
* Create a new HTML builder instance.
*
* @param \Illuminate\Routing\UrlGenerator $url
* @param \Illuminate\Contracts\Routing\UrlGenerator $url
*
* @return void
*/
Expand Down

0 comments on commit f622696

Please sign in to comment.