Skip to content

Commit

Permalink
rename JobWorkerManager -> JobWorker
Browse files Browse the repository at this point in the history
  • Loading branch information
awasiak committed Oct 30, 2018
1 parent 653ba7a commit a3c1ad9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jobmanager.php → jobworker.php
Expand Up @@ -9,7 +9,7 @@
use SAREhub\Commons\Logger\StreamLoggerFactoryProvider;
use SAREhub\DockerUtil\Worker\DefaultUnexpectedErrorHandler;
use SAREhub\DockerUtil\Worker\WorkerBootstrap;
use SAREhub\Servitiom\Job\Manager\JobManagerContainerFactory;
use SAREhub\Servitiom\JobWorker\JobWorkerContainerFactory;
use SAREhub\Servitiom\Util\ErrorHandling;

require __DIR__ . '/vendor/autoload.php';
Expand All @@ -18,7 +18,7 @@
$defaultLoggerFactory = (new StreamLoggerFactoryProvider(LogLevel::CRITICAL, null))->get();
$errorHandler = new DefaultUnexpectedErrorHandler($defaultLoggerFactory);

$bootstrap = WorkerBootstrap::create(JobManagerContainerFactory::class, $errorHandler);
$bootstrap = WorkerBootstrap::create(JobWorkerContainerFactory::class, $errorHandler);
$bootstrap->run();


Expand Up @@ -5,7 +5,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

namespace SAREhub\Servitiom\Job\Manager;
namespace SAREhub\Servitiom\JobWorker;


use DI\ContainerBuilder;
Expand All @@ -17,7 +17,7 @@
use SAREhub\Servitiom\Util\ServiceWorkerDefinitions;
use SAREhub\Servitiom\Util\UtilDefinitions;

class JobManagerContainerFactory implements ContainerFactory
class JobWorkerContainerFactory implements ContainerFactory
{
/**
* @return ContainerInterface
Expand Down

0 comments on commit a3c1ad9

Please sign in to comment.