Added \ncc\Abstracts > RuntimeImportOptions

https://git.n64.cc/nosial/ncc/-/issues/33
This commit is contained in:
Netkas 2022-12-15 01:05:53 -05:00
parent 223ae9189b
commit d237218562

View 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';
}