Skip to content

Commit

Permalink
Merge remote branch 'kriswallsmith/assetic/fix-type-hint'
Browse files Browse the repository at this point in the history
* kriswallsmith/assetic/fix-type-hint:
  [AsseticBundle] fixed an incorrect type hint
  • Loading branch information
fabpot committed Jun 13, 2011
2 parents 08d251f + e7d83c1 commit ae33036
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Templating/StaticAsseticHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

use Assetic\Asset\AssetInterface;
use Assetic\Factory\AssetFactory;
use Symfony\Component\Templating\Helper\AssetsHelper;
use Symfony\Component\Templating\Helper\CoreAssetsHelper;

/**
* The static "assetic" templating helper.
Expand All @@ -27,10 +27,10 @@ class StaticAsseticHelper extends AsseticHelper
/**
* Constructor.
*
* @param AssetsHelper $assetsHelper The assets helper
* @param AssetFactory $factory The asset factory
* @param CoreAssetsHelper $assetsHelper The assets helper
* @param AssetFactory $factory The asset factory
*/
public function __construct(AssetsHelper $assetsHelper, AssetFactory $factory)
public function __construct(CoreAssetsHelper $assetsHelper, AssetFactory $factory)
{
$this->assetsHelper = $assetsHelper;

Expand Down

0 comments on commit ae33036

Please sign in to comment.