1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 15:04:25 +02:00

Remove Interface suffix from some classes

This commit is contained in:
Toby Zerner
2015-07-05 12:30:23 +09:30
parent 2cc619a998
commit 873088750f
14 changed files with 22 additions and 22 deletions

View File

@@ -8,7 +8,7 @@ class AssetManager
protected $js;
public function __construct(CompilerInterface $js, CompilerInterface $less)
public function __construct(Compiler $js, Compiler $less)
{
$this->js = $js;
$this->less = $less;