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

This commit is contained in:
Darko
2015-09-16 13:03:26 +02:00
parent f4c0840d75
commit 7c210483e5
11 changed files with 27 additions and 27 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'];