2.0.0: Add namespacing (#1)

2.0.0: Namespace for idanoo/php-resque
Co-Authored-By: idanoo <daniel@m2.nz>
Co-Committed-By: idanoo <daniel@m2.nz>
This commit is contained in:
idanoo 2021-02-19 13:44:10 +13:00
parent 591012d123
commit 926f8a887c
8 changed files with 53 additions and 59 deletions

View file

@ -1,5 +1,5 @@
<?php
namespace Hlgrrnhrdt\Resque;
namespace Idanoo\Resque;
/**
* Worker
@ -9,14 +9,14 @@ namespace Hlgrrnhrdt\Resque;
class Worker
{
/**
* @var \Resque_Worker
* @var \Resque\Worker
*/
private $worker;
/**
* @param \Resque_Worker $worker
* @param \Resque\Worker $worker
*/
public function __construct(\Resque_Worker $worker)
public function __construct(\Resque\Worker $worker)
{
$this->worker = $worker;
}