Added NccBuildFlags

This commit is contained in:
Netkas 2022-05-06 17:17:23 +01:00
parent b96759b4e6
commit 97c212979a

View file

@ -0,0 +1,12 @@
<?php
namespace ncc\Abstracts;
abstract class NccBuildFlags
{
/**
* Indicates if the build is currently unstable and some features may not work correctly
* and can cause errors
*/
const Unstable = 'UNSTABLE';
}