Repository URL to install this package:
|
Version:
1.0.0 ▾
|
<?php
namespace Modules\Themes\Theme;
class AssetLocator
{
/**
* @var string
*/
private $url;
/**
* @var UrlGenerator
*/
private $urlGenerator;
public function __construct($url, UrlGenerator $urlGenerator)
{
$this->url = $url;
$this->urlGenerator = $urlGenerator;
}
}