1.0.0 Alpha Release #59
1 changed files with 18 additions and 0 deletions
18
src/ncc/Abstracts/RuntimeImportOptions.php
Normal file
18
src/ncc/Abstracts/RuntimeImportOptions.php
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ncc\Abstracts;
|
||||||
|
|
||||||
|
abstract class RuntimeImportOptions
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Indicates if the import should require PHP's autoload.php file
|
||||||
|
* for the package (Only applies to PHP packages)
|
||||||
|
*/
|
||||||
|
const ImportAutoloader = 'import_autoloader';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates if the import should require all static files
|
||||||
|
* for the package (Only applies to PHP packages)
|
||||||
|
*/
|
||||||
|
const ImportStaticFiles = 'import_static_files';
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue