Files
newznab-tmux-NNTmux/NNBase.php
T
DariusIII 24fa162413 Apply fixes from StyleCI
[ci skip] [skip ci]
2017-08-31 09:31:28 +00:00

14 lines
283 B
PHP

<?php
include_once __DIR__.DIRECTORY_SEPARATOR.'nntmux/constants.php';
if ($argc > 1) {
$constant = $argv[1];
include_once __DIR__.DIRECTORY_SEPARATOR.'nntmux/constants.php';
if (defined($constant)) {
exit(constant($constant));
}
}
exit(__DIR__.__FILE__);