We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4acc4a commit 575d891Copy full SHA for 575d891
src/HtmlBuilder.php
@@ -2,7 +2,7 @@
2
3
namespace Collective\Html;
4
5
-use Illuminate\Routing\UrlGenerator;
+use Illuminate\Contracts\Routing\UrlGenerator;
6
use Illuminate\Support\Traits\Macroable;
7
8
class HtmlBuilder
@@ -12,14 +12,14 @@ class HtmlBuilder
12
/**
13
* The URL generator instance.
14
*
15
- * @var \Illuminate\Routing\UrlGenerator
+ * @var \Illuminate\Contracts\Routing\UrlGenerator
16
*/
17
protected $url;
18
19
20
* Create a new HTML builder instance.
21
22
- * @param \Illuminate\Routing\UrlGenerator $url
+ * @param \Illuminate\Contracts\Routing\UrlGenerator $url
23
24
* @return void
25
0 commit comments