Rename PProcess class into PostProcess, adjust other scripts and classes for the change.

This commit is contained in:
Darko
2015-09-16 12:42:41 +02:00
parent 2b23fd4194
commit 8dd75d0d30
11 changed files with 26 additions and 26 deletions
@@ -3,7 +3,7 @@
require_once(dirname(__FILE__) . '/config.php');
use newznab\db\Settings;
use newznab\processing\PProcess;
use newznab\processing\PostProcess;
$pdo = new Settings();
/**
@@ -70,7 +70,7 @@ if ($args[$argv[1]] === true) {
}
}
$postProcess = new PProcess(['Settings' => $pdo, 'Echo' => ($argv[2] === 'true' ? true : false)]);
$postProcess = new PostProcess(['Settings' => $pdo, 'Echo' => ($argv[2] === 'true' ? true : false)]);
$charArray = ['a','b','c','d','e','f','0','1','2','3','4','5','6','7','8','9'];