public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $contents, $mimeType, $defer)
 {
     parent::__construct($providerList);
     $this->_contents = $contents;
     $this->_mimeType = $mimeType;
     $this->_defer = $defer;
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $selector, $breakpoints, $dependencyName)
 {
     parent::__construct($providerList);
     $this->_selector = $selector;
     $this->_breakpoints = $breakpoints;
     $this->_dependencyName = $dependencyName;
     $this->setIsCommonJsEntry(true);
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $componentClass, array $componentDependencies, $isMaster, $dependencyName)
 {
     parent::__construct($providerList);
     $this->_componentClass = $componentClass;
     $this->_componentDependencies = $componentDependencies;
     $this->_isMaster = $isMaster;
     $this->_dependencyName = $dependencyName;
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $fileNameWithType)
 {
     parent::__construct($providerList);
     if (substr($fileNameWithType, 0, 1) == '/') {
         throw new Kwf_Exception('Don\'t use absolute file names');
     }
     if (!$fileNameWithType) {
         throw new Kwf_Exception("Invalid filename");
     }
     $this->_fileName = $fileNameWithType;
     if (strpos($fileNameWithType, '\\') !== false) {
         throw new Kwf_Exception("Infalid filename, must not contain \\, use / instead");
     }
     //check commented out, only required for debugging
     //if (!file_exists($this->getAbsoluteFileName())) {
     //    throw new Kwf_Exception("File not found: '$this->_fileName' ('{$this->getAbsoluteFileName()}')");
     //}
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, Kwf_Assets_Dependency_Abstract $dep)
 {
     $this->_dep = $dep;
     parent::__construct($providerList);
 }
 public function __construct(array $dependencies, $name = null)
 {
     $this->setDependencies(self::DEPENDENCY_TYPE_REQUIRES, $dependencies);
     $this->_name = $name;
     parent::__construct();
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $contents)
 {
     parent::__construct($providerList);
     $this->_contents = $contents;
 }
 public function __construct(Kwf_Assets_Dependency_Abstract $dep)
 {
     $this->_dep = $dep;
     parent::__construct();
 }
 public function __construct($url)
 {
     $this->_url = $url;
     parent::__construct();
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $name, $path)
 {
     $this->_path = $path;
     $this->_name = $name;
     parent::__construct($providerList);
 }
 public function __construct(Kwf_Assets_ProviderList_Abstract $providerList, $url)
 {
     parent::__construct($providerList);
     $this->_url = $url;
 }