Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
webbingbrasil/themes-module / Theme / AssetLocator.php
Size: Mime:
<?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;
    }


}