Skip to content

Commit

Permalink
Fixing BaseJob
Browse files Browse the repository at this point in the history
  • Loading branch information
mariano committed May 12, 2015
1 parent 4bfd3cd commit fc408af
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions src/Queue/BaseJob.php
@@ -1,7 +1,7 @@
<?php
namespace Disque\Queue;

abstract class Job implements JobInterface
abstract class BaseJob implements JobInterface
{
/**
* Job ID
Expand All @@ -10,23 +10,6 @@ abstract class Job implements JobInterface
*/
private $id;

/**
* Job body
*
* @var array
*/
private $body = [];

/**
* Build a job with the given body
*
* @param array $body Body
*/
public function __construct(array $body = [])
{
$this->setBody($body);
}

/**
* Get job ID
*
Expand Down

0 comments on commit fc408af

Please sign in to comment.