targets() public method

Get the build targets.
public targets ( ) : array
return array An array of build targets.
コード例 #1
0
ファイル: Factory.php プロジェクト: markstory/mini-asset
 /**
  * Create an AssetCollection with all the configured assets.
  *
  * @return \MiniAsset\AssetCollection
  */
 public function assetCollection()
 {
     $assets = $this->config->targets();
     return new AssetCollection($assets, $this);
 }