From f4abc020ec409c86e55d61918a3d2f9f07d3884e Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 7 Dec 2022 20:59:34 -0500 Subject: [PATCH] Added more Runners to \ncc\Abstracts > Runners https://git.n64.cc/nosial/ncc/-/issues/32 --- src/ncc/Abstracts/Runners.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/ncc/Abstracts/Runners.php b/src/ncc/Abstracts/Runners.php index 5a0e052..85dc5fe 100644 --- a/src/ncc/Abstracts/Runners.php +++ b/src/ncc/Abstracts/Runners.php @@ -5,4 +5,30 @@ abstract class Runners { 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 + ]; } \ No newline at end of file