Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BundleInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Deploy\Package;
7 
11 interface BundleInterface
12 {
16  const BUNDLE_JS_DIR = 'js/bundle';
17 
26  public function addFile($filePath, $sourcePath, $contentType);
27 
33  public function flush();
34 
40  public function clear();
41 }
addFile($filePath, $sourcePath, $contentType)