Added more Runners to \ncc\Abstracts > Runners
https://git.n64.cc/nosial/ncc/-/issues/32
This commit is contained in:
parent
2842e63637
commit
f4abc020ec
1 changed files with 26 additions and 0 deletions
|
@ -5,4 +5,30 @@
|
||||||
abstract class Runners
|
abstract class Runners
|
||||||
{
|
{
|
||||||
const php = 'php';
|
const php = 'php';
|
||||||
|
|
||||||
|
const bash = 'bash';
|
||||||
|
|
||||||
|
const sh = 'sh';
|
||||||
|
|
||||||
|
const python = 'python';
|
||||||
|
|
||||||
|
const python3 = 'python3';
|
||||||
|
|
||||||
|
const python2 = 'python2';
|
||||||
|
|
||||||
|
const perl = 'perl';
|
||||||
|
|
||||||
|
const lua = 'lua';
|
||||||
|
|
||||||
|
|
||||||
|
const All = [
|
||||||
|
self::php,
|
||||||
|
self::bash,
|
||||||
|
self::sh,
|
||||||
|
self::python,
|
||||||
|
self::python3,
|
||||||
|
self::python2,
|
||||||
|
self::perl,
|
||||||
|
self::lua
|
||||||
|
];
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue