Added \ncc\Abstracts > RuntimeImportOptions
https://git.n64.cc/nosial/ncc/-/issues/33
This commit is contained in:
parent
223ae9189b
commit
d237218562
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